65 lines
2.6 KiB
XML
65 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@color/colorBlack"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.bottle.hp.album.photoview.HackyViewPager
|
|
android:id="@+id/hackyViewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<RelativeLayout
|
|
android:id="@+id/rlActionBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20px"
|
|
android:layout_marginTop="20px"
|
|
android:layout_marginRight="20px">
|
|
<TextView
|
|
android:textColor="@android:color/white"
|
|
android:gravity="center"
|
|
android:id="@+id/tvCurrent"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"/>
|
|
<Button
|
|
android:enabled="false"
|
|
android:textSize="20px"
|
|
android:textColor="@android:color/white"
|
|
android:id="@+id/btnCompleted"
|
|
android:background="#00ffffff"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="5px"
|
|
android:layout_toLeftOf="@+id/cbChoose"
|
|
android:layout_centerVertical="true"/>
|
|
<CheckBox
|
|
android:id="@+id/cbChoose"
|
|
android:background="@drawable/selector_img_select_check"
|
|
android:layout_width="70px"
|
|
android:layout_height="70px"
|
|
android:button="@null"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"/>
|
|
<ImageView
|
|
android:id="@+id/imgBack"
|
|
android:background="@mipmap/diy_title_back"
|
|
android:layout_width="70px"
|
|
android:layout_height="70px"
|
|
android:scaleType="centerInside"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
<ImageView
|
|
android:layout_gravity="top|right"
|
|
android:id="@+id/imgSelectVideo"
|
|
android:background="@drawable/selector_circle"
|
|
android:visibility="gone"
|
|
android:layout_width="59dp"
|
|
android:layout_height="59dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:src="@mipmap/accept_capture"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"/>
|
|
</FrameLayout>
|