我是Android的新手,我无法弄清楚如何动态地将按钮添加到预先存在的布局中。我将从SO上的另一个问题中找到的一些示例代码拼凑到一个hello world默认项目中。
onCreate方法:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Button myButton = new Button(this);
myButton.setText("Add Me");
RelativeLayout ll = (RelativeLayout)findViewById(R.id.main_layout);
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
ll.addView(myButton, lp);
setContentView(R.layout.activity_main);
}
布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:id="@+id/main_layout"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:id="@+id/cat_1"
android:layout_below="@+id/textView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="26dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2"
android:id="@+id/cat_2"
android:layout_alignBottom="@+id/cat_1"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="65dp"
android:layout_marginEnd="65dp" />
</RelativeLayout>
当我注释掉添加按钮部分时,项目正常工作,所以我知道这就是问题所在。我会粘贴一些调试信息,但logcat的'debug'过滤器非常冗长,即使程序没有运行也会不断更新。当我在调试模式下运行它时,手机在“应用程序已停止工作”消息出现之前显示错误,只有几分之一秒。
答案 0 :(得分:4)
setContentView
应该在超级之后立即完成。否则,只要你调用findViewById
,就会返回一个空指针。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button myButton = new Button(this);
myButton.setText("Add Me");
RelativeLayout ll = (RelativeLayout)findViewById(R.id.main_layout);
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
ll.addView(myButton, lp);
}
答案 1 :(得分:1)
在设置内容视图之前,您正在执行findViewById。这意味着找不到任何观点。因此,当您尝试使用该视图时,您将获得空指针异常
答案 2 :(得分:1)
LinearLayout ll = (LinearLayout) findViewById(R.id.main_layout);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
for(int i=0;i<30;i++){
Button myButton = new Button(this);
myButton.setText("Add Me");
myButton.setId(i);
ll.addView(myButton, lp);
}