リニアレイアウト内の評価バーとテキストビューを水平方向に中央揃えにしたい。評価バーがテキストビューよりも小さいようなもので、正しい配置が得られません。どうしよう???
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/author_name"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:id="@+id/ll1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_below="@id/author_name"
>
<RatingBar
android:id="@+id/rtbProductRating"
style="@style/SmallRatingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:isIndicator="true"
android:numStars="5"
android:layout_marginBottom="@dimen/padding_text"
android:layout_marginLeft="@dimen/padding_text"
android:rating="0" />
<TextView
android:id="@+id/time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/padding_text"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:textSize="18sp" >
</TextView>
</LinearLayout>
<TextView
android:id="@+id/texto"
android:layout_below="@id/ll1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>