我正在努力解决一个问题。我有一个主视图,里面有两种布局:
<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(或任何其他布局元素,如图像、按钮、另一个布局)添加到我的画布(borad)中。
这就是我现在的做法:
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();
}