アクティビティにハーフスクリーンのカスタムビューとTextViewがあります。
<com.sted.test.mainView
android:id="@+id/mainView" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<TextView android:id="@+id/tvScore" android:layout_height="wrap_content" android:layout_width="wrap_content"
android:layout_alignParentLeft="true" android:layout_alignParentBottom="true" />
カスタムビューをクリックしたときに、アクティビティのTextViewを更新するにはどうすればよいですか?
現在、カスタムビューにこのコーディングがありますが、その部分onTouchEvent()
でNullPointerExceptionが発生します。setText()
カスタムビューでTextViewを更新しないでください。
TextView tvScore = (TextView) findViewById(R.id.tvScore);
tvScore.setText("Updated!");