カスタムビューのStateListDrawableで大きな問題に直面しています。LinearLayoutから直接継承するカスタムビューがあり、そのXMLレイアウトでは、背景は、ビューの背景を現在の状態の順に有効または無効に設定する単純な状態リスト描画可能です。私が理解していないのは、私が電話した場合の理由です
this.SetEnabled(false);
私のカスタムビューでは、背景は変更されません。
たぶん私の質問はあまり明確ではないので、簡単な例を示しました。こちらからダウンロードできます。「ViewCustom.java」ファイルを見て、FIXMEタグを見つけます。
誰かが私を助けてくれることを願っています。
PSボタンに関連付けられた同じ状態リストドローアブルは機能しますが、私のカスタムビューでは機能しません。
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);
}
}
View.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>