ボタンを表示することになっている単純なアプリを作成しました。そのボタンをクリックすると、「Hello World」というテキストが表示されますが、現時点ではクラッシュしているだけです。
XML は次のとおりです。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text=""
tools:context=".GraphicsActivity" />
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Write Something..."
android:onClick="writeMsg" />
</RelativeLayout>
Android のソースは次のとおりです。
public class GraphicsActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_graphics);
}
public void WriteMsg() {
Button button = (Button) findViewById(R.id.button_send);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
TextView tv = (TextView) findViewById(R.id.hello);
tv.setText("Hello World");
setContentView(tv);
}
});
}
}
私が言うように、それはクラッシュするだけです。ちなみにエミュレータで動かしてます。