私は1つの問題に苦しんでいます。内部に 2 つのレイアウトを含む 1 つのメイン ビューがあります。
<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"
tools:context=".TestMainActivity" >
<HorizontalScrollView
android:id="@+id/menuView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add2" />
</LinearLayout>
</HorizontalScrollView>
<com.test.board.Board
android:id="@+id/boardView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/menuView"
android:layout_centerHorizontal="true"
android:layout_marginTop="30dp" />
</RelativeLayout>
ボード レイアウトは、ViewGroup から継承している私のクラスです。私が達成したいのは、TextView(または画像、ボタン、別のレイアウトなどの他のレイアウト要素)をキャンバス(ボード)に追加することです。
これは私が今やっている方法です:
Button textBold = (Button) findViewById(R.id.button1);
textBold.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
TextView txt1 = new TextView(TestMainActivity.this);
txt1.setText("Sample text");
txt1.setTextColor(Color.BLUE);
txt1.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
myView.addView(txt1);
}
});
myView は Board クラスのオブジェクトです。
確認していると毎回子要素の数が増えているのですが、このTextViewが表示されません。
このテキストを表示するにはどうすればよいか教えてください。
編集
myView を初期化する onCreat メソッド全体を配置しなかったのは間違いかもしれません。それで、それは次のとおりです。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myView = (Board) findViewById(R.id.boardView1);
myView.setBackgroundColor(Color.WHITE);
myView.refreshView(); //function below
Button textBold = (Button) findViewById(R.id.button1);
textBold.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
TextView txt1 = new TextView(TestMainActivity.this);
txt1.setText("Sample text");
txt1.setTextColor(Color.BLUE);
txt1.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
myView.addView(txt1);
}
});
追加用の refreshView() 関数があります。
public void refreshView() {
// redraw the view
invalidate();
requestLayout();
}