Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
入力テキスト フィールドを選択すると、Android の既定のブラウザが入力テキスト フィールドの周りに境界線を描画しますか?
これを試しましたが、何もしません。
input[type="text"]:focus { border: none; outline: none;}
Androidブラウザでテキストフィールドが選択されている場合、入力テキストフィールドの周りに境界線がないことは可能ですか?
背景を透明に設定してみてください。
<EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="@string/input" android:background="#00000000" />