Newer
Older
KillProcess / app / src / main / res / layout / item_apps_list.xml
bello on 27 Mar 2018 1 KB init
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:gravity="center_vertical"
              android:paddingTop="5dp"
              android:paddingBottom="5dp"
              android:orientation="horizontal" >

    <ImageView
        android:id="@+id/itme_app_img"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_margin="5dp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="10dp"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/item_app_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColor="#333333" />

        <TextView
            android:id="@+id/item_app_package"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="14sp"
            android:textColor="#aaaaaa" />

        <TextView
            android:id="@+id/item_app_version"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="14sp"
            android:textColor="#aaaaaa" />

        <TextView
            android:id="@+id/item_app_package_version"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="14sp"
            android:textColor="#aaaaaa" />
    </LinearLayout>

</LinearLayout>