Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7643 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
android:layout_width="match_parent"
4
android:layout_height="wrap_content"
5
android:paddingLeft="8dp" >
6
7
<ImageView
8
android:id="@+id/icon"
9
android:layout_width="wrap_content"
10
android:layout_height="wrap_content"
11
android:layout_centerVertical="true"
12
android:layout_alignParentLeft="true" />
13
14
<TextView
15
android:id="@+id/name"
16
android:layout_width="match_parent"
17
android:layout_height="wrap_content"
18
android:layout_toRightOf="@+id/icon"
19
android:paddingBottom="8dp"
20
android:paddingLeft="12dp"
21
android:paddingRight="12dp"
22
android:paddingTop="8dp"
23
android:textAppearance="?android:attr/textAppearanceLarge" />
24
25
</RelativeLayout>
26
27