作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
看了很多相关的讨论,但是没有找到合适的解决方案。我需要做的是在 EditText 小部件的底部创建一个黑色边框。这可能吗?
最佳答案
简单的在 res 的 drawable 文件夹中创建一个 edittext_bottom_line.xml 文件
<?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:id="@+id/editTextEnterPassword"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:background="@drawable/edittext_bottom_line"
/>
关于android - 如何仅在 EditText 的底部添加边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25481244/
我是一名优秀的程序员,十分优秀!