我有多个线性布局,如何一次更改某些或全部背景,然后又一次更改它们,等等?

| 在我的活动中,我大约有40个线性布局...基本上是5个父母和所说父母的其余孩子。 我想要做的是更改某些背景,然后单击一个按钮并更改其他背景。 我遇到的问题是...不幸的是,我现在没有确切的代码,因为一旦更改背景,就必须将其设置为null。 我在Java类中拥有的代码看起来像这样...
mlayout1= findViewById(R.id.layout1);

mlayout2= findViewById(R.id.layout2);

mlayout3= findViewById(R.id.layout3);

mlayout4= findViewById(R.id.layout3);

if variable = 1{

mlayout1.setBackgroundResource(R.drawable.background_img);
mlayout2.setBackgroundResource(R.drawable.background_img);
mlayout3.setBackgroundResource(R.drawable.background_img);
mlayout4.setBackgroundResource(R.drawable.background_img);
}

if variable = 2{

mlayout1.setBackgroundResource(R.drawable.background_img);

mlayout2.setBackgroundResource(null);

mlayout3.setBackgroundResource(R.drawable.background_img);

mlayout4.setBackgroundResource(null);
}

if variable = 3{

mlayout1.setBackgroundResource(R.drawable.background_img);

mlayout2.setBackgroundResource(null);

mlayout3.setBackgroundResource(null);

mlayout4.setBackgroundResource(null);
}
等等... 一个问题是,我需要将背景更改为大约30种布局,并使用大约500种不同的组合... 我遇到的最大问题是在应用新的背景组合之前必须将所有背景重置为null ... 我有一张桌子,上面有所有不同的组合。 我希望能够通过单击下一个和/或上一个按钮或键入组合ID号来滚动浏览它们,并点亮正确的背景组合,然后在点亮下一个组合之前将它们全部重置... ... 在绘制新的背景组合之前,也许我还需要另一个活动来将所有内容重置为null,或者我不确定如何最好地有效地做到这一点。 我是Android的新手,但我已经想了好几个星期了,所以我的头很痛...     
已邀请:
        您可能要做的第一件事是将布局视图放入数组或列表等中,因此您不必编写每个ID的ID名称:
public void onCreate(Bundle b) {
    setContentView(R.layout.main);

    List<View> myViews = new ArrayList<View>();
    myViews.add(findViewById(R.id.layout1));
    myViews.add(findViewById(R.id.layout2));
    // etc.
}
然后,您可以直接在数组中以编程方式访问它们。但这仍然是很多代码。 如果可以访问其父母,则可以在选择时遍历其子女:
public void performSelection(int selection) {
    // One of your parents that holds a lot of child views
    ViewGroup parent = (ViewGroup)findViewById(R.id.parent_1);

    for(int i = 0; i < parent.getChildCount(); i++) {
        View v = parent.getChildAt(i);

        // If selection is 1, this sets the drawable background on every item.
        // If 2, then sets drawable on 0, 2, 4, 6, ... and null on 1, 3, 5, ...
        // If 3, then sets drawable on 0, 3, 6, 9, ... and null on 1, 2, 4, 5, ...
        if (i % selection == 0) {
            v.setBackgroundResource(R.drawable.background_img);
        } else {
            v.setBackgroundResource(null);
        }
    }
}
但是要小心,它将为请求的父母查看每个孩子。确保它仅包含要更改其背景的视图。 另一种方法:如果布局视图在XML中基本上都相同,但是具有不同的ID,则可以考虑为其中的一个单独的XML资源创建一个XML资源,然后在创建活动时将其动态加载到父对象或数组中。在这种情况下,您的主布局XML文件将具有parent_1元素,但没有子视图,因为它们将在运行时添加。
layout/one_element.xml
<LinearLayout ...>
     <TextView android:id=\"@+id/element_text\" ... />
     <!-- etc -->
</LinearLayout>
然后,您可以执行以下操作:
public void onCreate(Bundle b) {
    setContentView(R.layout.main);

    // One of your parents that will hold a lot of child views
    ViewGroup parent = (ViewGroup)findViewById(R.id.parent_1);

    for (int i = 0; i < NUM_CHILDREN; i++) {
        View newView = getLayoutInflater().inflate(R.layout.one_element,
                                                   null);
        // Set anything specific to the new view
        // eg.
        TextView tv = (TextView)newView.findViewById(R.id.element_text);
        tv.setText(String.format(\"Hi, I\'m element %d!\", i));

        // Add it to the parent
        parent.addView(newView);
    }
}
然后,您可以根据需要使用上面的“ 6”方法更改背景。     

要回复问题请先登录注册