gpt4 book ai didi

java - 如何删除使用 addContentView 添加的 View ?

转载 作者:行者123 更新时间:2023-11-30 08:57:50 24 4
gpt4 key购买 nike

我已经使用 addContentView() 成功地将 subview 添加到父 View 。但是当我试图删除 View 时,它会给我一个空指针异常。

    //Working Code
Button button1=(Button) findViewById(R.id.button1);
button1.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v)
{
getWindow().addContentView(getLayoutInflater().inflate(R.layout.customlayout, null),new FrameLayout.LayoutParams(
LayoutParams.MATCH_PARENT,
LayoutParams.WRAP_CONTENT ));
}
});


//Code not Working
Button button2=(Button) findViewById(R.id.button2);
button2.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v)
{
View myView = findViewById(R.layout.customlayout);
ViewGroup parent = (ViewGroup) myView.getParent();
parent.removeView(myView);
}
});

最佳答案

在 xml 中给你的根布局一个 id

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/InflateViewLinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

</LinearLayout>

在代码中你可以做这样的事情

View viewToRemove= findViewById(R.id.InflateViewLinearLayout);
if (viewToRemove != null && (ViewGroup) viewToRemove.getParent() != null && viewToRemove instanceof ViewGroup)
((ViewGroup) viewToRemove.getParent()).removeView(viewToRemove);

关于java - 如何删除使用 addContentView 添加的 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27924668/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com