I have TextView
and custom view called StarRating
.
There is code snippet:
<RelativeLayout
android:id="@+id/flowtextView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.app.views.StarRating
android:id="@+id/star_rating"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/_2sdp"
android:text="by Legacy Reviewer, April 11, 2014 from Chicago IL"
android:textSize="12sp"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/star_rating" />
</RelativeLayout>
Expected Result:
The problem is that TextView
is not wrapping the StarRating
...
How can I do that ?