恢复具有两个具有相同ID的视图的片段

时间:2017-08-22 12:43:31

标签: android android-fragments onsaveinstancestate

我有一个复杂的布局要实现。 它有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);
}

1 个答案:

答案 0 :(得分:6)

正如您所说,您的问题基本上就是您处于以下状态: enter image description here

您需要做的是告诉Android自己SparseArray中的哪个键可以保存EditText的状态。基本上,你需要达到这个目的:

enter image description here

Pasha Dudka在this amazing article中详细解释了实现这一目标的机制。 (同时为他拍摄好照片)

只需在文章中搜索“查看ID应该是唯一的”,您就会得到答案。

针对您的具体情况的解决方案的要点如下:

  • 你可以继承LinearLayout s.t.你的CustomLinearLayout将知道一个孩子所属的部分,状态。这样,您可以将某个部分中的所有子状态保存为专用于该部分的SparseArray,并将专用的SparseArray添加到全局 SparseArray(就像在图像中一样)
  • 你可以继承EditText,s.t。您的CustomEditText知道它属于哪个部分,并将其状态保存在SparseArray中的自定义键 - 例如第一部分为section_text_Section1,第二部分为section_text_Section2

就个人而言,我更喜欢第一个版本,因为即使您稍后在章节中添加了更多视图,它也会起作用。第二个不适用于更多的视图,因为在第二个不是父节点进行智能状态保存,而是视图本身。

希望这有帮助。