56 lines
2.2 KiB
XML
56 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@android:color/white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/rlTitle"
|
|
android:background="@color/actionbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80px">
|
|
<ImageView
|
|
android:id="@+id/imgBack"
|
|
android:background="@drawable/ui_bg_rect"
|
|
android:layout_width="80px"
|
|
android:layout_height="80px"
|
|
android:src="@mipmap/icon_dialog_close"
|
|
android:scaleType="centerInside"/>
|
|
<TextView
|
|
android:textSize="18px"
|
|
android:textColor="@android:color/black"
|
|
android:id="@+id/tvTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/title_album"
|
|
android:layout_centerInParent="true"/>
|
|
<Button
|
|
android:enabled="false"
|
|
android:textColor="@android:color/white"
|
|
android:gravity="center"
|
|
android:id="@+id/btnCompleted"
|
|
android:background="@drawable/selector_btn_bg"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="30dp"
|
|
android:layout_marginRight="16dp"
|
|
android:minWidth="48dp"
|
|
android:text="@string/done"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
<GridView
|
|
android:id="@+id/gridView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="2dp"
|
|
android:horizontalSpacing="2dp"
|
|
android:verticalSpacing="2dp"
|
|
android:stretchMode="columnWidth"
|
|
android:columnWidth="120dp"
|
|
android:numColumns="auto_fit"/>
|
|
</LinearLayout>
|