下面的代码试图将绿色下划线放在textview中的文本下方。这不适用于2.3.7手机,但适用于较新的设备。旧设备中的文字下方没有绿色下划线。 layout_weight在旧设备上不起作用吗?有没有其他技巧可以实现同样的目标?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1" >
<TextView
android:id="@+id/onText"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.8"
android:background="#F21861"
android:fontFamily="sans-serif-condensed"
android:gravity="center"
android:text="off"
android:textAllCaps="true"
android:textColor="#454545" />
<ImageView
android:id="@+id/underline"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2"
android:background="#00a950"
android:contentDescription="@null" />
</LinearLayout>
答案 0 :(得分:0)
Soubhit Puri提供的链接是更好的方式。 Android, change underline Color from an EditText dynamically
快速修复是将LinearLayout的高度设置为固定大小,例如25dp,然后将Textview的高度设置为22dp,将ImageView的高度设置为3dp。
或者根据下面的代码,只需删除ImageView并将LinearLayout的背景设置为绿色,25dp,Textview高度为22dp。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:background="#00a950" >
<TextView
android:id="@+id/onText"
android:layout_width="match_parent"
android:layout_height="22dp"
android:background="@android:color/white"
android:fontFamily="sans-serif-condensed"
android:gravity="center"
android:text="off"
android:textAllCaps="true"
android:textColor="#454545" />
</LinearLayout>