我有一个复杂的布局要实现。它有 19 个部分,可以根据用户先前输入的大量参数显示或不显示。为了简化代码并且不显示未使用的部分,布局是动态创建的。
一切都在一个片段中。该片段有一个用作容器的 LinearLayout,并且在创建片段时,我会生成所有必要的部分。
每个部分由其自己的本地适配器管理,该适配器负责扩展该部分的布局并将其添加到容器中。
一切正常。问题是 2 个部分具有完全相同的结构,因此它们共享相同的 xml 布局。因此,两个部分的内部视图具有相同的 ID。这不是问题,因为该部分是在其适配器中本地管理的。当我转到下一个片段然后回到这个片段时,就会出现问题。系统尝试恢复视图的先前状态,因为这两个部分具有相同的 id,所以当第二个部分恢复时,它的值也设置为第一个。
是否有任何解决方案来管理它或告诉片段不要恢复其状态(因为一切都是手动重新加载的)。
这是当前结构的一个简单示例:
片段xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
节 xml
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/section_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
片段代码
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_layout, container, false);
if (<condition>)
createSection1(getContext(),view);
if (<condition>)
createSection2(getContext(),view);
return view;
}
private void createSection1(Context context, ViewGroup root){
Section1Adapter adapter = new Section1Adapter(context, root);
// ...
}
private void createSection2(Context context, ViewGroup root){
Section2Adapter adapter = new Section2Adapter(context, root);
// ...
}
适配器代码(两者的想法相同)
public Section2Adapter(LayoutInflater inflater, ViewGroup root) {
View view = LayoutInflater.from(context).inflate(R.layout.section_layout, root, false);
initView(view);
root.addView(view);
}