0

我希望一个小图像出现在我的 ListView 的右侧,但是当我尝试我的 TextViews 时,它会将它推出“应用程序”,因此它不可见。我尝试过研究重力,但我似乎无法正确处理。是否可以根据需要放置它,还是必须在 RelativeLauoyt 中放置?谢谢

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF"
>

<ImageView
    android:id="@+id/img"
    android:layout_width="80dip"
    android:layout_height="80dip" 
    android:layout_marginLeft="5dp" 
    android:layout_marginTop="5dp" 
    android:layout_marginBottom="5dp" 
    android:scaleType="centerCrop"/>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:paddingLeft="10dp"
    android:layout_width="fill_parent"
    android:layout_height="80dip">
    <TextView
        android:layout_width="fill_parent"
        android:id="@+id/title"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:textColor="#004b23"
        android:textSize="16sp"
        android:maxLines="2"
        android:ellipsize="end"
        android:layout_marginRight="30sp"/>
    <TextView
        android:layout_width="fill_parent"
        android:id="@+id/detail"
        android:textColor="#cfae78"
        android:layout_height="wrap_content"/>
    <TextView
        android:layout_width="fill_parent"
        android:textColor="#cfae78"
        android:id="@+id/footer"
        android:layout_height="wrap_content"/>
</LinearLayout>

这是我想放在 ListView 右侧的 ImageView。

<ImageView
    android:id="@drawable/day"
    android:layout_width="40dip"
    android:layout_height="40dip"
    android:layout_marginBottom="5dp"
    android:layout_marginRight="5dp"
    android:layout_marginTop="5dp"
    android:scaleType="centerCrop" 
    android:layout_gravity="right|center_vertical"/>

    </LinearLayout>
4

2 回答 2

0

我总是推荐使用RelativeLayout(但这只是个人喜好)。

使用 RelativeLayout 您需要:

Listview: (Align Parent Left, to Left of ImageView) ImageView: (Align Parent Right, Width: wrap content)

那应该达到你想要的。

于 2012-05-13T19:03:38.757 回答
0

您的“内部”线性布局有一个属性layout_width="fill_parent",这将导致您的内部线性布局占用所有剩余的水平空间。为了让它工作,将线性布局的 layout_width 属性更改为较小的值,比如 150dip。

那是,layout_width="150dip"

此外,不是你的 textView 推出了你的图像,而是你的线性布局的 layout_width 属性

PS我还建议您使用相对布局。

于 2012-05-13T19:14:40.583 回答