0

我有一个布局,但@id/category_starred_icon没有显示 ImageView,预期的行为是将带有 2 TextView 的 LinearLayout 扩展到所有可用的空白空间,但没有显示 ImageView

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@drawable/borders" >

    <View
        android:id="@+id/category_color"
        android:layout_width="match_parent"
        android:layout_height="5dp"
        android:background="@color/awazari_blue" />

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/category_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textIsSelectable="false"
                android:textSize="18sp"
                android:paddingLeft="5dp"
                android:paddingTop="5dp"
                android:paddingRight="5dp"
                android:textColor="@android:color/black"
                android:hint="@string/app_name"  />

            <TextView
                android:id="@+id/category_description"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textIsSelectable="false"
                android:maxLines="3"
                android:paddingLeft="5dp"
                android:paddingRight="5dp"
                android:textColor="@color/awazari_medium_gray"
                android:ellipsize="end"
                android:hint="@string/description" />
        </LinearLayout>

        <ImageView
            android:id="@+id/category_starred_icon"
            android:layout_width="64dp"
            android:layout_height="64dp"
            android:src="@drawable/unstarred"
            android:contentDescription="@string/app_name"
            android:layout_gravity="right" />

    </LinearLayout>
</LinearLayout>
4

3 回答 3

3

使用下面的代码,它会给你你想要的:

<?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:padding="6dip">

<LinearLayout
    android:orientation="vertical"

    android:layout_width="0dip"
    android:layout_weight="1"
    android:layout_height="fill_parent">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"                   
        android:gravity="center_vertical"
        android:text="First Textview" />

    <TextView  
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"             
        android:singleLine="true"
        android:ellipsize="marquee"
        android:text="Second Textview" />

</LinearLayout>

<ImageView
    android:id="@+id/icon"        
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_marginRight="6dip"        
    android:src="@drawable/ic_launcher" />

</LinearLayout>

这是输出:

在此处输入图像描述

希望这对你有帮助。

于 2013-07-04T23:03:12.683 回答
0

如果没有屏幕截图或描述,我不确定你到底想要什么,但你的问题是你ImageView在一个LienarLayouthorizontal orientation谁有另一个孩子LinearLayout的里面horizontal orientation,没有留下任何空间widthmatch_parentImageView

<LinearLayout
    android:orientation="horizontal"    <!-- This is the ImageViews parent  -->
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"         <!-- This child is taking up all of the width  -->
        android:layout_height="wrap_content">

您可以在此处执行不同的操作,具体取决于您想要删除其中一个LinearLayouts 或给它 avertical orientation或使用RelativeLayout. 但我不知道你到底想要什么,所以很难给出完整的答案

编辑

你可以看看这是否给了你想要的东西。如果没有屏幕截图或更好的描述,就很难确切地知道你想要的一切。但是你可以根据自己的喜好调整它

<RelativeLayout
    android:layout_width="match_parent"     //changed this to a RelativeLayout
    android:layout_height="wrap_content">

    <LinearLayout
        android:id="@+id/ll"
        android:orientation="vertical"
        android:layout_width="wrap_content"    // changed the width here
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/category_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textIsSelectable="false"
            android:textSize="18sp"
            android:paddingLeft="5dp"
            android:paddingTop="5dp"
            android:paddingRight="5dp"
            android:textColor="@android:color/black"
            android:text="Text"  />

        <TextView
            android:id="@+id/category_description"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textIsSelectable="false"
            android:maxLines="3"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:ellipsize="end" 
            android:text="Text Again"/>
    </LinearLayout>

    <ImageView
        android:id="@+id/category_starred_icon"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:src="@drawable/blue_box"
        android:layout_gravity="right"
        android:layout_alignParentRight="true" />

</LinearLayout>

请注意,我更改了TextViews、颜色和背景的文本,以便在我的编辑器上显示它

于 2013-07-04T22:01:35.557 回答
0

ImageView是隐藏的,因为你android:orientation="horizontal"同时使用布局和android:layout_width="match_parent".

它隐藏了你ImageView在内部的右侧,LinearLayout这是不可见的。

您可以使用来填充除byandroid:weight=1之外的所有可用空间。ImageViewLinearLayout

于 2013-07-04T22:02:26.663 回答