1

我在自定义视图上遇到了 StateListDrawable 的大问题。我有一个直接从 LinearLayout 继承的自定义视图,并且在其 XML 布局中,背景是一个简单的状态列表可绘制对象,它按照当前状态的顺序设置视图的背景启用或禁用。我不明白为什么如果我打电话

this.SetEnabled(false);

在我的自定义视图中,背景不会改变。

也许我的问题不是很清楚,所以我做了一个简单的例子。你可以在这里下载。查看“ViewCustom.java”文件并找到 FIXME 标记。

希望可以有人帮帮我。

PS与Button关联的相同状态列表drawable有效,但在我的自定义视图中没有。

ViewCustom.java

public class ViewCustom extends LinearLayout {

public ViewCustom(Context context, AttributeSet attrs) {
    super(context, attrs);

    //Inflate layout
    final LayoutInflater inflater = (LayoutInflater) this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    inflater.inflate(R.layout.view_custom, this);


    /**FIXME: Try to set "enabled" to false in order to get the
     * "panel_disabled" background, but it doesn't work. 
     */
    this.setEnabled(false);
}

}

查看.custom.xml

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

sld_panel.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
   <item android:drawable="@drawable/panel_disabled" android:state_enabled="false"/>
   <item android:drawable="@drawable/panel_enabled" android:state_enabled="true"/>
</selector>
4

1 回答 1

1

问题是,您不能只禁用线性布局。您需要做的是禁用其中的所有内容。这个问题回答了这个问题,但归结为两件事之一。

  1. 您可以通过 使布局消失setVisibility(View.GONE)
  2. 您可以通过以下方式遍历视图中的每个项目:

    for ( int i = 0; i < myLayout.getCount();  i++ ){
        View view = getChildAt(i);
        view.setEnabled(false); // Or whatever you want to do with the view.
    }
    
于 2012-11-24T16:16:11.580 回答