我想通过单击图像按钮动态生成按钮,在XML中我提到了图像按钮,我也在.java类中调用它。我的xml如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/theme"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageButton android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/plus1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/welcomemilan" />
</LinearLayout>
我的java类如下所示 公共类MainActivity扩展了Activity {
private static final String TAG = "MyActivity";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//to access linear layout
final LinearLayout l = (LinearLayout)findViewById(R.id.theme);
// my add button image
ImageButton b = (ImageButton)findViewById(R.id.button);
//to generate a new button
final Button b1 = new Button(this);
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// the button is clicked now i need to generate a button
for(int j =0; j<10;j++){
b1.setText("Add");
l.addView(b1);
Log.i(TAG, "the button is pressed"+j);
}
}
});
}
}
直到现在一切都很好。我正在按下按钮并看到图像,但是当按下按钮时,我会感到致命的例外情况。在这方面帮助很多,我是android的新手。
07-03 10:31:46.853: E/AndroidRuntime(639): FATAL EXCEPTION: main
07-03 10:31:46.853: E/AndroidRuntime(639): java.lang.IllegalStateException:The specified child already has a parent. You must call removeView() on the child's parent first.
07-03 10:31:46.853: E/AndroidRuntime(639): at android.view.ViewGroup.addViewInner(ViewGroup.java:3344)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.view.ViewGroup.addView(ViewGroup.java:3215)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.view.ViewGroup.addView(ViewGroup.java:3172)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.view.ViewGroup.addView(ViewGroup.java:3152)
07-03 10:31:46.853: E/AndroidRuntime(639): at com.pro.raisebutton.MainActivity$1.onClick(MainActivity.java:38)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.view.View.performClick(View.java:3480)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.view.View$PerformClick.run(View.java:13983)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.os.Handler.handleCallback(Handler.java:605)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.os.Handler.dispatchMessage(Handler.java:92)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.os.Looper.loop(Looper.java:137)
07-03 10:31:46.853: E/AndroidRuntime(639): at android.app.ActivityThread.main(ActivityThread.java:4340)
07-03 10:31:46.853: E/AndroidRuntime(639): at java.lang.reflect.Method.invokeNative(Native Method)
07-03 10:31:46.853: E/AndroidRuntime(639): at java.lang.reflect.Method.invoke(Method.java:511)
07-03 10:31:46.853: E/AndroidRuntime(639): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
07-03 10:31:46.853: E/AndroidRuntime(639): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
07-03 10:31:46.853: E/AndroidRuntime(639): at dalvik.system.NativeStart.main(Native Method)
请在这方面提供帮助
答案 0 :(得分:2)
您的布局已包含该按钮。这就是你得到这个例外的原因。
如果要动态添加按钮到布局,则必须在每次迭代时创建一个新实例:
for(int j =0; j<10;j++){
Button newButton = new Button(MainActivity.this);
l.addView(newButton);
}
或者您可以创建一个布局,其中包含您喜欢的布局参数的按钮,并使用inflater在每次迭代时获取按钮的新实例。
我注意到你的布局是水平的,这是你想要的吗?
答案 1 :(得分:1)
java.lang.IllegalStateException:指定的子级已有父级。您必须先在孩子的父母身上调用removeView()。
来自log cat的这一行意味着一个View只能有一个父级。因此,当您尝试在循环中多次添加b1 **时,会产生此问题。要解决这个问题,您需要为每个循环迭代都有一个单独的按钮实例。
这样的事情应该成功:
for(int j =0; j<10;j++)
{
Button b1 = new Button(getApplicationContext());
b1.setText("Add");
l.addView(b1);
Log.i(TAG, "the button is pressed"+j);
}
答案 2 :(得分:0)
您可以使用此代码动态添加按钮。
Button myButton = new Button(this);
myButton.setText("Add Me");
LinearLayout ll = (LinearLayout)findViewById(R.id.theme);
LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
ll.addView(myButton, lp);
将此代码放入onclick函数并调整