我有一个问题。我有一个主视图,里面有两个布局:
<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。
有人可以告诉我,我需要做些什么来使这个文字可见?
修改
可能是一个错误,我没有把整个onCreat方法,我初始化myView。它就是:
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();
}
答案 0 :(得分:0)
myView
可能是Board
的一个实例,但它可能不是那个已经膨胀并且在屏幕上的实例。确保myView
设置如下:
myView = (Board)findViewById(R.id.boardView1);