-1
私はAndroidが初めてでログインページで作業しています。
2つのEditText
アイテムがあり、EditText
が選択されている場合、下のボーダーカラーを変更したいとします。
EditText
はすべての罫線で、下部罫線のみでは必要ありません。私は以下のように試してみましたが、それは動作していない
:アンドロイドで編集テキスト枠の選択色を変更するには?
のEditText
<EditText
android:id="@+id/et_email"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:textSize="18dp"
android:textColor="#fff"
android:hint="Enter Your Email"
/>
を押す必要があります。 –