2011-07-27 9 views
0

私は、プリファレンスを拡張するカスタムクラスを作成しました。私はそのカスタムクラスをXMLレイアウトファイルで使用しており、その値にアクセスする必要があります。私のレイアウトファイルの 一部:layout.filenameのUI要素値にアクセスする方法

<MyCustomClass 
android:id="@+id/custom01" 
android:title="ineedthistext" /> 

は、どのように私は、文字列として「ineedthistext」を取得することができますか?クラスのコンストラクタ経由

答えて

0

public MyCustomClass(Context context, AttributeSet attrs) { 
    ... 
    // Get an attribute 
    X var = attrs.getX(...); 
} 
関連する問題