很抱歉这个令人困惑的问题,这个例子可能会让事情变得清晰。我正在尝试将内部布局设置为其他布局文件。为简单起见,我制作了所有线性布局,但总的来说,我更喜欢它是任何类型的布局。给定main_layout.xml,我可以根据按下按钮将内部LinearLayout(chooseLayout)设置为layout_1.xml或layout_2.xml吗?
示例:
layout_1.xml - 小布局1
layout_2.xml - 小布局2
main_layout.xml - 我们要显示的主要布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/chooseLayout"
>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
您可以轻松使用单个布局文件来实现所需的效果。
只需将“子视图”设置为隐藏“已消失”的android:visibility
值,并将要显示的子视图显示为“可见”的android:visibility
值。
例如,如果您希望显示subView1
,并且默认情况下隐藏subView2
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"
android:id="@+id/subView1"
>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
android:id="@+id/subView2"
>
</LinearLayout>
</LinearLayout>
然后,在您的代码中,您可以调用类似以下的方法来交换2个子视图的可见性。我假设2个子视图有实例变量subView1
和subView2
。
private void swapSubviewVisibility(View subviewToDisplay) {
View subviewToHide = (subviewToDisplay == subView1 ? subView2 : subView1);
subviewToHide.setVisibility(View.GONE);
subviewToDisplay.setVisibility(View.VISIBLE);
}
答案 1 :(得分:0)
我会选择使用inflater以编程方式创建视图。 这是工作代码:
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
public static final int LAYOUT_FIRST = 1;
public static final int LAYOUT_SECOND = 2;
LinearLayout container;
Button b1, b2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
container = (LinearLayout) findViewById(R.id.container);
b1 = (Button) findViewById(R.id.button1);
b2 = (Button) findViewById(R.id.button2);
b1.setOnClickListener(this);
b2.setOnClickListener(this);
}
private void setInnerLayout(int which){
int resId = 0;
switch (which){
case LAYOUT_FIRST: resId = R.layout.layout1; break;
case LAYOUT_SECOND: resId = R.layout.layout2; break;
}
if (resId!=0){
container.removeAllViews();
container.addView(LayoutInflater.from(this).inflate(resId, container, false));
}
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.button1: setInnerLayout(LAYOUT_FIRST); break;
case R.id.button2: setInnerLayout(LAYOUT_SECOND); break;
}
}
}
对于你的布局:
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="56dp"
android:text="Button1"/>
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="56dp"
android:text="Button2"/>
</LinearLayout>
<LinearLayout
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
</LinearLayout>
以下是github上完整代码的链接:REPO