我想在线性布局内水平居中评级栏和文本视图。事情就像 ratingbar 比 textview 小,我没有得到正确的对齐。我应该怎么做???
<?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"/>