我的評級欄不完全單排看到圖像http://imgur.com/vRGrXU1最後一位明星不會完全顯示我將如何解決此問題請幫助我如何解決此問題評分欄顯示所有5星級徹底幫我評級欄不顯示單排所有明星
<?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="fill_parent"
android:orientation="vertical"
android:padding="10sp" >
<EditText
android:id="@+id/Email"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Email"
android:singleLine="true" >
<requestFocus />
</EditText>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:text="Give rating"
android:textAppearance="?android:attr/textAppearanceLarge" />
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:stepSize="1"
android:rating="0" />
<EditText
android:id="@+id/Comments"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:layout_marginTop="10dp"
android:hint="Comments"
android:minLines="3" >
</EditText>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/Submitbtn"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Submit" />
<Button
android:id="@+id/btn_cancel"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_toRightOf="@+id/Submitbtn"
android:text="Cancel" />
</RelativeLayout>
</LinearLayout>
如果仍然沒有顯示完全增加幾個** dp **。如果顯示額外的星星,然後減少它。 –
您必須對對話框佈局進行更改。 –
finaly我做我自己的問題是在android:padding =「10sp」在linearlayout在上面我現在刪除它看到所有5星完全:) – user2867267