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" />