我不确定我脑子里是否有虫子,或者它在Android的EditText里面。
我有一个简单的EditText。
<EditText
android:id="@+id/name_value"
android:layout_width="0dp"
android:layout_height="@dimen/feedback_form_comment_box"
android:layout_weight="6"
android:background="@drawable/black_border"
android:padding="@dimen/feedback_form_padding" />
当我运行它时,我在屏幕上看到一个带有可绘制的(只是黑色边框)的普通编辑文本。完美。
我现在需要设定引力。因为光标在文本区域的中间开始。我希望光标显示在edittext的开头。所以我像这样设定引力。
<EditText
android:id="@+id/name_value"
android:layout_width="0dp"
android:layout_height="@dimen/feedback_form_comment_box"
android:layout_weight="6"
android:gravity="top|left"
android:background="@drawable/black_border"
android:padding="@dimen/feedback_form_padding" />
现在神秘的是,edittext的底部边框消失了。
这是我正在使用的形状。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- Solid will define the color of our shape's body -->
<solid android:color="@color/white" />
<!-- Stroke will define the border of our shape-->
<stroke
android:width="1dp"
android:color="@color/black" />
</shape>
发生了什么?
答案 0 :(得分:0)
BRO! 我也遇到过这样一个问题。它发生在一些Android pad设备上。 经过长时间的测试,我发现文本视图的填充导致了这种情况。不仅形状可绘制,而且img背景将导致这一点。
更好的方法是手动为textview设置填充。
如果有时间,我会继续检查源代码是否有原因。