Выровняйте рейтинг по шкале справа - PullRequest
1 голос
/ 28 мая 2011

Я пытаюсь добавить строку рейтинга в строку списка, содержащую изображение и текст. Моя проблема в том, что, когда я добавляю рейтинг, я не могу заставить его выровняться по правому краю. Он либо заполняет доступную область, либо выравнивается по левому краю.

Моя строка списка определена так:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">
<ImageView  
    android:id="@+id/picture"
    android:layout_width="64px"
    android:layout_height="64px"
    android:paddingLeft="3px"
    ></ImageView>
<TextView 
    android:id="@+id/drinkName" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:textSize="25px">
    </TextView>
<RatingBar
    android:id="@+id/rating"
    android:layout_gravity="right"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="?android:attr/ratingBarStyleSmall">
    </RatingBar>
</LinearLayout>

Есть идеи?

Спасибо заранее Roland

Ответы [ 3 ]

3 голосов
/ 28 мая 2011

Три небольших изменения:

<?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="wrap_content">
<ImageView  
    android:id="@+id/picture"
    android:layout_width="64px"
    android:layout_height="64px"
    android:paddingLeft="3px"
    ></ImageView>
<TextView 
    android:id="@+id/drinkName" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textSize="25px">
    </TextView>
<RatingBar
    android:id="@+id/rating"
    android:layout_gravity="right"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="?android:attr/ratingBarStyleSmall">
    </RatingBar>
</LinearLayout>
1 голос
/ 28 мая 2011

Вы можете использовать RelativeLayout ... например:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">
<ImageView  
    android:id="@+id/picture"
    android:layout_width="64px"
    android:layout_height="64px"
    android:paddingLeft="3px"
></ImageView>
<TextView 
android:id="@+id/drinkName" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content"
android:textSize="25px">
</TextView>
<RelativeLayout android:layout_width="wrap_content" android:id="@+id/relativeLayout1" android:layout_height="match_parent">
    <RatingBar android:layout_width="wrap_content" android:id="@+id/rating" android:layout_height="wrap_content" style="?android:attr/ratingBarStyleSmall" android:layout_alignParentRight="true"></RatingBar>
</RelativeLayout>
</LinearLayout>
0 голосов
/ 28 мая 2011

Вы пробовали gravity -атрибут? Кроме того, вы не должны использовать значения пикселей. Это ухудшит ваш макет на устройствах с другим разрешением экрана.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...