Newer
Older
DownApp / app / src / main / res / layout / item_app.xml
Bello on 10 Apr 2018 1 KB init
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="10dp"
                android:background="#ffffff">

    <ImageView
        android:id="@+id/app_image"
        android:layout_width="60dp"
        android:layout_marginRight="10dp"
        android:layout_height="60dp"/>

    <TextView
        android:id="@+id/app_name"
        android:layout_toRightOf="@+id/app_image"
        android:text="钱来网"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <TextView
        android:id="@+id/app_size"
        android:layout_toRightOf="@+id/app_image"
        android:layout_alignBottom="@+id/app_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <Button
        android:id="@+id/app_down"
        android:layout_width="wrap_content"
        android:text="下载"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:layout_height="wrap_content"/>

</RelativeLayout>