50 lines
1.9 KiB
XML
50 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="#ebebeb"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/rlTitle"
|
|
android:background="#feaa06"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="65px">
|
|
<ImageView
|
|
android:id="@+id/imgBack"
|
|
android:layout_width="64px"
|
|
android:layout_height="64px"
|
|
android:src="@mipmap/community_cancel"
|
|
android:scaleType="centerInside"
|
|
android:layout_centerVertical="true"/>
|
|
<TextView
|
|
android:textSize="26px"
|
|
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:id="@+id/btnCompleted"
|
|
android:background="@mipmap/gallery_community_collection_icon"
|
|
android:clickable="false"
|
|
android:layout_width="64px"
|
|
android:layout_height="64px"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:alpha="0.3"/>
|
|
</RelativeLayout>
|
|
<GridView
|
|
android:id="@+id/gridView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="10px"
|
|
android:horizontalSpacing="10px"
|
|
android:verticalSpacing="10px"
|
|
android:stretchMode="columnWidth"
|
|
android:columnWidth="300px"
|
|
android:numColumns="auto_fit"/>
|
|
</LinearLayout>
|