「Android入門」基本知識のまとめ(manifest.xmlとmain.xml)

1.Manifest.xmlにAndroidの入り口プログラムの設
代码

<?xml version="1.0″ encoding="UTF-8″?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="DxSoft.helloandroid">
<application>
<activity android:name=".MainActivity" android:label="テスト">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4″ /><!–最小バージョン4 Android1.6!–>
</manifest>

2.main.xmlに画面の文字を表示

<?xml version="1.0″ encoding="UTF-8″?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">"
<TextView <!–Androidの制御情報–>
android:layout_width="fill_parent" <!–補充–>
android:layout_height="wrap_content"
android:text="@string/ShowText"/> <!–Strings.xmlにStringのShowText情報!–>
</LinearLayout>
3.Java代码
package DxSoft.helloandroid;
import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
// ToDo add your GUI initialization code here
}

}

4.「import android.widget.TextView;」を利用
TextView tv=new TextView(this);
tv.setText(R.string.ShowText);
setContentView(tv);

Android

Posted by arkgame