42 lines
1.2 KiB
XML
42 lines
1.2 KiB
XML
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="80sp"
|
||
|
android:orientation="horizontal"
|
||
|
>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_weight="0"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
|
||
|
<ImageView android:id="@+id/icon"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="45dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:scaleType="fitCenter"
|
||
|
android:src="@android:drawable/sym_def_app_icon"
|
||
|
/>
|
||
|
|
||
|
<Chronometer android:id="@+id/time"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:singleLine="true"
|
||
|
android:textColor="#ffffffff" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<TextView android:id="@+id/appName"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_weight="1"
|
||
|
android:paddingTop="4dp"
|
||
|
android:textSize="12sp"
|
||
|
android:textColor="#ffffffff"
|
||
|
/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|