<?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="match_parent"
android:background="@color/activity_bgcolor"
>
<RelativeLayout
android:id="@+id/headview"
android:layout_width="fill_parent"
android:layout_height="45dp"
android:background="@color/white"
android:gravity="center_vertical"
>
<TextView
android:textSize="16sp"
android:textColor="#fff"
android:id="@+id/gallery_back"
android:text="@string/album"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:gravity="center"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerVertical="true"
/>
<TextView
android:id="@+id/gallery_del"
android:background="@drawable/plugin_camera_del_state"
android:layout_alignParentRight="true"
android:layout_width="50dp"
android:layout_height="wrap_content"
/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/bottom_layout"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_alignParentBottom="true"
android:background="@color/white" >
<TextView
android:id="@+id/send_button"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:paddingRight="16dp"
android:paddingLeft="16dp"
android:gravity="center"
android:text="@string/finish"
android:textColor="@color/white"
/>
</RelativeLayout>
<com.electric.chargingpile.widge.photoview.ZoomingViewpager
android:id="@+id/gallery01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/bottom_layout"
android:layout_below="@id/headview"
android:layout_centerHorizontal="true"
android:background="@color/plugin_camera_black"
android:unselectedAlpha="1"/>
</RelativeLayout>
|