条件に応じて文字列を表示する TextView を取得しようとしています。ただし、実装しようとすると、アプリが動作しなくなります。関連するコード/xmlは次のとおりです。
// class declaration, etc.
TextView textString;
// other code
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_name);
...
textString = (TextView) findViewById(R.id.textId);
...
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.button_id:
...
if(getNum(0) == 10) {
textString = (TextView) findViewById(R.id.textId);
textString.setText("String 1");
}
if(getNum(1) == 10) {
textString = (TextView) findViewById(R.id.textId);
textString.setText("String 2");
}
// etc.
getNum(int index) は、指定されたインデックスの配列から整数を返すメソッドです。
TextView の XML コード:
<TextView
android:id="@+id/textId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/other_id"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp" />
なぜクラッシュするのですか?
編集* LogCat は次のとおりです。
どれだけ必要かわかりません。