设置背景可绘制状态到Android按钮

时间:2013-03-08 05:04:24

标签: android textview xml-drawable

我正在构建一个多选问卷android程序。 我在onCreate()方法中有以下内容

btnArray = new Button[5];
btnArray[0] = (Button) findViewById(R.id.bOp1);
btnArray[1] = (Button) findViewById(R.id.bOp2);
btnArray[2] = (Button) findViewById(R.id.bOp3);
btnArray[3] = (Button) findViewById(R.id.bOp4);
btnArray[4] = (Button) findViewById(R.id.bOp5);

Typeface othmanyFont = Typeface.createFromAsset(getAssets(),
        "fonts/amiri.ttf");
Drawable shape = getResources().getDrawable(R.drawable.optionbutton);

for(int i=0;i<5;i++){
    btnArray[i].setTypeface(myFont);
    ((Button)btnArray[i]).setBackgroundDrawable(shape); //Button-4 only turns red
    btnArray[i].setOnClickListener(this);
}  

drawable资源“optionbutton.xml”为“按下状态”定义红色渐变,为其他状态定义灰色。它看起来如下

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_pressed="true" >
    <shape>
    <gradient
      android:startColor="#bf1d00"
      android:endColor="#801300"
      android:angle="270" />
        <corners android:radius="10dp" />
    <stroke
      android:width="1dp"
      android:color="#71c2eb" />
    </shape>
  </item>
  <item>
        <shape xmlns:android="http://schemas.android.com/apk/res/android"
            android:shape="rectangle">
            <gradient android:startColor="#FFFFFF" 
                android:endColor="#999"
                android:angle="270" />
            <corners android:radius="10dp" />
            <stroke android:width="1px" android:color="#0070b7" />
        </shape>
  </item>
</selector>

选择器实际上有效,但仅在最后一个应用按钮上。无论按下5中的哪个按钮,最后一个(不是按下的按钮)按钮的背景都会变为红色。

作为调试步骤:我尝试展开for循环并更改应用背景的顺序,最后应用的按钮仅获得红色背景:

((Button)btnArray[0]).setBackgroundDrawable(shape);
((Button)btnArray[1]).setBackgroundDrawable(shape);
((Button)btnArray[2]).setBackgroundDrawable(shape);
((Button)btnArray[4]).setBackgroundDrawable(shape);
((Button)btnArray[3]).setBackgroundDrawable(shape); //Button-3 only turns red

这令人困惑! 我的实施有什么问题?

3 个答案:

答案 0 :(得分:3)

你可以设置一个xml的形状和另一个的按钮状态然后尝试这里是xml的按钮来获得不同的状态

 <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android"> 

    <item android:drawable="@drawable/save_button_active" android:state_focused="true" android:state_pressed="true"/>
    <item android:drawable="@drawable/save_button_active" android:state_focused="false" android:state_pressed="true"/>
    <item android:drawable="@drawable/save_button_active" android:state_focused="true"/>
    <item android:drawable="@drawable/save_button_inactive" android:state_focused="false" android:state_pressed="false"/>
    </selector>

答案 1 :(得分:1)

似乎已弃用 setBackgroundDrawable() 。您可以使用其他替代方法,例如 setBackgroundResource()

答案 2 :(得分:0)

由于方法setBackgroundDrawable(shape)已弃用,我尝试了另一种实际上完美无缺的方法并解决了问题:

((Button)btnArray[i]).setBackgroundResource(R.drawable.optionbutton);