35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?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="wrap_content"
|
|
android:padding="8dp" >
|
|
|
|
<TextView
|
|
android:id="@+id/text1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toLeftOf="@+id/chart_layout"
|
|
android:text="TEXT1"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/text2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignLeft="@+id/text1"
|
|
android:layout_below="@+id/text1"
|
|
android:layout_toLeftOf="@id/chart_layout"
|
|
android:text="TEXT2"
|
|
android:textSize="12sp" />
|
|
|
|
<FrameLayout
|
|
android:id="@id/chart_layout"
|
|
android:layout_width="54dp"
|
|
android:layout_height="54dp"
|
|
android:layout_alignParentRight="true"
|
|
android:visibility="gone" >
|
|
</FrameLayout>
|
|
|
|
</RelativeLayout> |