に登録されていない私はvalues.xml URI is not Registered
でエラーを持って、原因URIがvalues.xml
Error:(729, 21) No resource found that matches the given name: attr 'listTextColor'.
Error:(728, 21) No resource found that matches the given name: attr 'colorMain'.
Error:(728, 21) No resource found that matches the given name: attr 'colorMain'.
Error:(729, 21) No resource found that matches the given name: attr 'listTextColor'.
Error:Execution failed for task ':app:processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
に失敗したビルドしかし、私はcolors.xmlでcolorMain
とlistTextColor
EDIT colors.xmlを持っています
<color name="colorMain">#fff</color> <color name="listTextColor">#fff</color>
I UここSED:
、RESディレクトリにある「カラー」フォルダを作成し、カラーリソースファイルを追加し、カラーxmlファイルに次のように色を定義`<EditText
android:id="@+id/edittxtPassword"
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="@color/listTextColor"
android:hint="Enter your Password"
android:inputType="number"
android:maxLength="10"
android:paddingBottom="5dp"
android:paddingLeft="45dp"
android:paddingRight="5dp"
android:paddingTop="5dp" />`
colorsMainとlistTextColorをcolors.xmlでどのように定義したか貼り付け – santak
colors.xmlを貼り付けることができますか?そしてあなたはその色をどこで参照しますか? –
@santak pls編集 – Bullet