You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
943 B
29 lines
943 B
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
<ImageView
|
|
android:id="@+id/caTestIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10dp"
|
|
android:src="@android:drawable/ic_menu_camera"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/caTestName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10dp"
|
|
android:textSize="18sp"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/caTestResult"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:layout_marginLeft="10dp"
|
|
android:textSize="15sp"
|
|
/>
|
|
</LinearLayout>
|