0

LinearLayout的背景是选择器。在此布局中,还有其他Views ImageViewLinearLayout两个,TextView但未TextViews显示。这是layout xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:background="@drawable/category_item"
    android:padding="6dip" >

<ImageView
    android:id="@+id/icon"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_marginRight="6dip"
    android:contentDescription="@string/logo" />

<LinearLayout
    android:layout_width="0dip"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/toptext"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center_vertical" />

    <TextView
        android:id="@+id/bottomtext"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical" />
</LinearLayout>


</LinearLayout>

这是选择器代码:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/category_clicked" android:state_focused="true"/>
    <item android:drawable="@drawable/category_norm"/>

</selector>
4

3 回答 3

1

我已经尝试过这种布局,它显示了您的文本视图。也许您为它们设置的文本是空的。只需检查一下。

android:layout_weight="1"从这里删除:

    <TextView
    android:id="@+id/toptext"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:gravity="center_vertical" />

它的用处。

于 2013-06-26T13:23:16.160 回答
0
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:background="@drawable/category_item"
     android:orientation="vertical"
    android:padding="6dip" >

android:orientation="vertical" 可能丢失了

于 2013-06-26T13:16:16.853 回答
0
android:layout_weight="1"

要么从所有小部件中删除它。或者在所有孩子中使用它..(imageView,内部线性布局,两个 textViews)

于 2013-06-26T13:16:22.060 回答