attrs.xmlファイルに属性を作成します。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="Custom">
<attr name="src" format="integer" />
</declare-styleable>
</resource>
そして私のコードでは、次のような属性の値を取得します。attrs.getAttributeIntValue( "mynamespace"、 "src"、-1);
できます。レイアウトxmlファイルから「src」の値を取得します。しかし、私の質問は、なぜandroidがRクラスに値を生成しないので、Javaコードで文字列'src'を再度使用する必要がないのですか?