<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:background="@android:color/black"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<GridView
|
android:id="@+id/grid"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:horizontalSpacing="@dimen/mis_space_size"
|
android:verticalSpacing="@dimen/mis_space_size"
|
android:paddingBottom="?android:attr/actionBarSize"
|
android:clipToPadding="false"
|
android:numColumns="3"/>
|
|
<RelativeLayout
|
android:clickable="true"
|
android:id="@+id/footer"
|
android:background="#cc000000"
|
android:layout_alignParentBottom="true"
|
android:layout_width="match_parent"
|
android:layout_height="?android:attr/actionBarSize">
|
|
<Button
|
android:id="@+id/category_btn"
|
android:paddingLeft="16dp"
|
android:paddingRight="16dp"
|
android:layout_centerVertical="true"
|
android:textColor="@color/mis_folder_text_color"
|
tools:text="所有图片"
|
android:textSize="16sp"
|
android:gravity="center_vertical"
|
android:drawableRight="@drawable/mis_text_indicator"
|
android:drawablePadding="5dp"
|
android:background="@null"
|
android:singleLine="true"
|
android:ellipsize="end"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent" />
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|