如何设置只有底线的EditText
How to set EditText with only bottom line
我想创建普通的 EditText(默认 android 没有 L 形边缘的编辑文本)。但是,在我的 android 工作室中,每次我创建一个 EditText 元素时,都会创建一个 L 形 EditText,而不是没有侧边的普通 editText。谁能告诉我这是什么问题?
请注意:我只想删除末端的 San Seriff 并保留该行的其余部分。使背景为空或透明会删除整行,这就是我卡住的地方。
创建drawable
line.xml
文件
设置在EditText
android:background="@drawable/line"
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:bottom="1dp"
android:left="-2dp"
android:right="-2dp"
android:top="-2dp">
<shape android:shape="rectangle" >
<stroke
android:width="0.5dp"
android:color="@android:color/black" />
</shape>
</item>
</layer-list>
我想创建普通的 EditText(默认 android 没有 L 形边缘的编辑文本)。但是,在我的 android 工作室中,每次我创建一个 EditText 元素时,都会创建一个 L 形 EditText,而不是没有侧边的普通 editText。谁能告诉我这是什么问题?
请注意:我只想删除末端的 San Seriff 并保留该行的其余部分。使背景为空或透明会删除整行,这就是我卡住的地方。
创建drawable
line.xml
文件
设置在EditText
android:background="@drawable/line"
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:bottom="1dp"
android:left="-2dp"
android:right="-2dp"
android:top="-2dp">
<shape android:shape="rectangle" >
<stroke
android:width="0.5dp"
android:color="@android:color/black" />
</shape>
</item>
</layer-list>