| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:layout_marginTop="10dp">
- <ImageView
- android:id="@+id/img_icon"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:src="@drawable/icon_sheep"
- />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:layout_toRightOf="@id/img_icon"
- >
- <TextView
- android:id="@+id/tv_game_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="@color/black_dark"/>
- <TextView
- android:id="@+id/tv_prorgess"
- android:textColor="@color/theme"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="16sp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- android:layout_marginTop="10dp"
- >
- <ImageView
- android:id="@+id/iv_state"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="5dp"
- android:src="@drawable/icon_stop"
- />
- <ImageView
- android:id="@+id/iv_remove"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="5dp"
- android:layout_marginLeft="10dp"
- android:src="@drawable/icon_delet"
- />
- </LinearLayout>
- </RelativeLayout>
- <ProgressBar
- android:id="@+id/pb_download"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- />
- </LinearLayout>
|