Android: Rating Bar not resizing properly with weights?

VellAnaexia

New Member
I am trying to get my star ratings to appear next to one another in my layout using split weights, each being the same. But the stars are appearing cutoff. The visibility is changed dynamically to appear.XML:\[code\] <RatingBar android:id="@+id/userrating" android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="1" android:clickable="false" android:numStars="5" android:rating="0" android:stepSize=".5" android:visibility="invisible" /> <RatingBar android:id="@+id/overallrating" android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="1" android:clickable="false" android:numStars="5" android:rating="0" android:stepSize=".5" android:visibility="invisible" />\[/code\]
0oWDx.png
 
Back
Top