レイアウトxmlファイルでは、次のように@stringを使用してプロパティを設定します。
<com.hardpass.MyCustomComponent
android:layout_width="fill_parent"
android:layout_height="wrap_content"
mynamespace:title="@string/xxootitle" />
@string/xxootitle
カスタムコンポーネントでどのように処理しますcom.hardpass.MyCustomComponent
か?@string/xxootitle
または、strings.xmlで定義されている実際の値に解析する方法。
String title = attrs.getAttributeValue(mynamespace, "title");
//the title got here is "@string/xxootitle",
//but how to parse `@string/xxootitle` to the real value which is defined in strings.xml.