Проблема с Android в XML-макете строки списка просмотра - PullRequest
0 голосов
/ 16 июня 2011

У меня есть ListView с пользовательским адаптером, и я пытаюсь изменить XML макета для строки элемента списка, чтобы он выглядел правильно.Я пытаюсь добиться следующего макета (представьте, что нижнее по центру вертикально):

Icon    Title          >
        Description

Проблема, с которой я сталкиваюсь, заключается в том, что заголовок и описание имеют различную длину, поэтому> "значок перемещается вправо с помощью более длинного текста (и иногда выходит за пределы экрана).

Я пытаюсь, чтобы значок"> "всегда находился на дальнем правом краю экрана,и чтобы любой более длинный текст был «увенчан» многоточием.Я бы предпочел не использовать RelativeLayout.Вот мой код:

<?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:paddingTop="10dp"
android:paddingBottom="10dp" >
    <ImageView
        android:id="@+id/status"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_gravity="center_vertical"
        android:src="@drawable/icon" />
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
            <TextView
                android:id="@+id/serverName"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:paddingRight="10dp"
                android:paddingLeft="10dp"
                android:textSize="16sp" />
            <TextView 
                android:id="@+id/description"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:paddingRight="10dp"
                android:paddingLeft="15dp"
                android:textSize="10sp"
                android:singleLine="true"
                android:ellipsize="end" />
    </LinearLayout>
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_gravity="center_vertical"
    android:gravity="right"
    android:src="@drawable/chevron" />
</LinearLayout>

Буду признателен за любую помощь.

Ответы [ 2 ]

2 голосов
/ 16 июня 2011

Используйте RelativeLayout для достижения этой цели.Вот пример из блога разработчика Android LINK

1 голос
/ 16 июня 2011

Поместите свой значок в другой LinearLayout Просто игнорируйте и замените ваш значок и цвет текста, потому что это было мое формирование.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:orientation="horizontal" android:layout_height="wrap_content">
    <LinearLayout android:layout_width="fill_parent" android:padding="5sp" android:layout_height="fill_parent" android:layout_weight="5">
        <ImageView android:id="@+id/news_image" android:layout_height="50sp" android:layout_width="50sp" android:scaleType="center" android:src="@drawable/my_icon" />
    </LinearLayout>
    <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="8sp" android:layout_weight="2">
        <TextView android:text="News Heading" android:id="@+id/news_heading" android:layout_height="wrap_content" android:textSize="20sp" android:ellipsize="end" android:maxLines="1" android:layout_width="fill_parent" android:textColor="@color/themePlainBlue"></TextView>
        <TextView android:text="News Details" android:id="@+id/news_details" android:layout_height="wrap_content" android:ellipsize="end" android:maxLines="1" android:layout_width="fill_parent"></TextView>
    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="5.6">
        <ImageView android:id="@+id/news_image" android:layout_height="50sp" android:scaleType="center" android:src="@drawable/list_arrow" android:layout_width="32sp" android:layout_gravity="center_vertical|center_horizontal"></ImageView>
    </LinearLayout>


</LinearLayout>
...