Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="8dp"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignTop="@+id/text1"
- android:layout_alignBottom="@+id/text1"
- android:weightSum="100"
- android:orientation="horizontal">
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="58"
- android:background="#68b4ff"/>
- </LinearLayout>
- <TextView
- android:id="@+id/text1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_toLeftOf="@+id/text2"
- android:padding="10dp"
- android:text="Flora"
- />
- <TextView
- android:id="@+id/text2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:padding="10dp"
- android:text="58%"
- />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="8dp"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignTop="@+id/text3"
- android:layout_alignBottom="@+id/text3"
- android:weightSum="100"
- android:orientation="horizontal">
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="42"
- android:background="#a9a9a9"/>
- </LinearLayout>
- <TextView
- android:id="@+id/text3"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="10dp"
- android:text="Flora"
- android:layout_alignParentTop="true"
- android:layout_alignParentStart="true"/>
- <TextView
- android:id="@+id/text4"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:padding="10dp"
- android:text="42%"
- />
- </RelativeLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement