Я пытаюсь добавить строку рейтинга в строку списка, содержащую изображение и текст. Моя проблема в том, что, когда я добавляю рейтинг, я не могу заставить его выровняться по правому краю. Он либо заполняет доступную область, либо выравнивается по левому краю.
Моя строка списка определена так:
<?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