2

我有一个应用程序,我将一些资源应用于按钮以修改其背景。

一切正常,但是当我的应用程序在 onPause 之后进入 onResume 时,我无法再设置背景了。

我有一组 18 个按钮,当我在 onResume 中时,我调用:

for (int i = 0; i < max; i++) {
    Button b = l.get(i);
    b.setBackgroundResource(R.color.green);
}

在 li 中有从findViewById().

这仅适用于 for 的最后一个元素,但不适用于其他元素。

任何想法?

** 编辑 **

这是我用于填充数组的代码

btn_1 = (Button)findViewById(R.id.btn_1);
btn_1.setOnClickListener(this);
l.add(btn_1);

这对我所有的按钮都重复。

** 第二次编辑 **

public void onResume() {
    btn_1 = (Button)findViewById(R.id.btn_1);
    btn_1.setOnClickListener(this);
    l = new ArrayList<Button>();
    l.add(btn_1);
    ...
    for (int i = 0; i < max; i++) {
        Button b = l.get(i);
        b.setBackgroundResource(R.color.green);
    }
}

onCreate().

4

8 回答 8

5

试试下面的d ..这会很好。

List<Button> mButtonList = new ArrayList<Button>();

onCreate() {

    mButtonList.add((Button) findViewById(R.id.btn_1));
    mButtonList.add((Button) findViewById(R.id.btn_2));
    mButtonList.add((Button) findViewById(R.id.btn_3));
    ....

    for(Button b : mButtonList) {
        b.setOnClickListener(this);
    }

}


onResume() {
    for(Button b : mButtonList) {
        b.setBackgroundResource(R.color.green);
    }
}
于 2012-07-02T15:49:01.923 回答
2

简单的例子:

活动

public class StackOverFlowActivity extends Activity {   
    private ArrayList<Button> myArray = new ArrayList<Button>();

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        myArray.add((Button)findViewById(R.id.btn_1));
        myArray.add((Button)findViewById(R.id.btn_2));
        myArray.add((Button)findViewById(R.id.btn_3));
        myArray.add((Button)findViewById(R.id.btn_4));
        myArray.add((Button)findViewById(R.id.btn_5));
    }

    @Override
    protected void onResume() {
        super.onResume();
        for (Button b : myArray) {
            b.setBackgroundColor(getResources().getColor(R.color.blue));
        }
    }
}

XML 主要

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/btn_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1" />

    <Button
        android:id="@+id/btn_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 2" />

    <Button
        android:id="@+id/btn_3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 3" />

    <Button
        android:id="@+id/btn_4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 4" />

    <Button
        android:id="@+id/btn_5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 5" />

</LinearLayout>

我在 Strings.xml 中的颜色

<color name="blue">#0099CC</color>
于 2012-07-04T08:08:47.370 回答
1

改用这个:

for (int i = 0; i < max; i++) {
    Button b = l.get(i);
    b.setBackgroundColor(getResources().getColor(R.color.green));
}

如果 max 真的很大,您可能希望getColor在循环之前缓存结果。

编辑:

根据文档:setBackgroundResource仅与可绘制的 id 一起使用,而setBackgroundColor似乎正是您所需要的,因此您的代码的另一部分可能运行不正常,也许循环,上面的行在setBackgroundColor我的应用程序。

于 2012-06-29T09:01:03.060 回答
1

你说过:

": btn_1 的 ... 代码相同,只需将 btn_1 与 btn_2、btn_3 等交换即可。"

如果是这样,那么每次您尝试添加新按钮时,这些行都会重置您的数组。

l = new ArrayList<Button>();
l.add(btn_1);

PS您应该避免使用手动创建按钮数组 - 而是使用一些育儿布局,例如LinearLayout,然后使用getChildAt(i)获取他的按钮儿子,它更干净。例子:

    // Register all the buttons in the layout to the OnClickListener
    LinearLayout lin = (LinearLayout)findViewById(R.id.linear_buttons);
    int childcount = lin.getChildCount();
    for (int i=0; i < childcount; i++){
        View v = lin.getChildAt(i);
        v.setOnClickListener(this);
    }
于 2012-07-03T12:11:10.190 回答
0

尝试这个 -

for (int i = 0; i < l.getChildCount(); i++) 
{
    Button b = (Button) l.getChildAt(i);
    b.setBackgroundResource(R.color.green);
}
于 2012-06-19T17:51:36.840 回答
0

为什么不扩展 Button 类,设置它的颜色,然后使用那个新类?

于 2012-07-06T02:40:57.313 回答
0

尝试这个。它为我工作

for (int i = 0; i < count; i++) {

            btn_title[i] = new Button(ActivityName.this);
            btn_title[i].setText(menu.menu_title[i]);
            btn_title[i].setId(i);
            btn_title[i].setTextColor(Color.BLACK);
            btn_title[i].setBackgroundColor(Color.parseColor(dataxml
                    .getMenucolor()));
            btn_title[i]
                    .setTextSize(Integer.parseInt(dataxml.getFontsize()));
            btn_title[i].setGravity(Gravity.CENTER_VERTICAL
                    | Gravity.CENTER_HORIZONTAL);
            btn_title[i].setSingleLine();
            btn_title[i].setEllipsize(TruncateAt.END);

            btn_title[i].setOnClickListener(new ButtonListner());

        }

希望这会有所帮助

于 2012-06-29T10:44:12.767 回答
-1

它显然不起作用,让我解释一下为什么它设置了 button 的最后一个值。您正在使用一个按钮参考(无论您从哪里获得(Button)findViewById(R.id.btn_1))并且不合时宜地有一个按钮参考,您只需使用更改其值 l.add(btn_1);

你需要做的是,为每个按钮创建一个新的按钮实例,并在适当的视图中对其进行充气。

这是那个小勾号

for (int i==0 ; i < length; i++ ){
    Button button  = new Button(context); 

    collectionOfButton.add(button) ;
}

如果您尝试集成到某些xml 布局文件中,请使用inflate使用该按钮集合。

于 2012-06-29T10:02:02.623 回答