正如标题所说,我有一个列表视图,并且该行包含一个包含多行的文本视图。由于它有多条线,它的行为就像图片显示的那样。
基本上它应该只显示第一行,但是下面的行正在向上推。这只发生在冰淇淋三明治和果冻豆中。姜面包看起来不错。
这是该行的 XML 代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_list_row"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TextView
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
android:id="@+id/item_yyyy"
android:gravity="center"
android:textIsSelectable="true"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_weight=".14"
android:textSize="15sp" />
<TextView
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
android:id="@+id/item_dd"
android:gravity="center"
android:textIsSelectable="true"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_weight=".11"
android:textSize="15sp" />
<TextView
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
android:id="@+id/item_mm"
android:gravity="center"
android:textIsSelectable="true"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_weight=".11"
android:textSize="15sp" />
<TextView
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
android:id="@+id/item_state"
android:gravity="center"
android:textIsSelectable="true"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_weight=".13"
android:textSize="15sp" />
<TextView
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
android:id="@+id/item_pu"
android:gravity="center"
android:textIsSelectable="true"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_weight=".11"
android:textSize="15sp" />
<TextView
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
android:id="@+id/item_detailes"
android:paddingLeft="5dp"
android:textIsSelectable="true"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_weight=".40"
android:textSize="15sp" />
</LinearLayout>
我尝试在行的 xml 中弄乱 android:padding 但没有结果。
我能做些什么?谢谢。