<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/black"
|
tools:context="cn.flightfeather.thirdapp.activity.PhotoViewerActivity">
|
|
<android.support.v4.view.ViewPager
|
android:id="@+id/view_pager"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
</android.support.v4.view.ViewPager>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:background="@color/transStatusBar"
|
android:layout_height="40dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
<TextView
|
android:id="@+id/tv_name"
|
android:layout_marginLeft="12dp"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="4"
|
android:textSize="15dp"
|
android:textColor="@color/white"
|
android:text="这个是文件名.jpg"/>
|
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:orientation="horizontal"
|
android:gravity="end">
|
<TextView
|
android:id="@+id/tv_currentP"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="15dp"
|
android:textColor="@color/white"
|
android:text="1"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="15dp"
|
android:textColor="@color/white"
|
android:text="/"/>
|
|
<TextView
|
android:id="@+id/tv_totalCount"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginEnd="@dimen/fab_margin"
|
android:textSize="15dp"
|
android:textColor="@color/white"
|
android:text="5"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
<LinearLayout
|
android:layout_alignParentBottom="true"
|
android:layout_width="match_parent"
|
android:background="@color/transStatusBar"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:id="@+id/iv_delete"
|
android:layout_width="50dp"
|
android:layout_height="50dp"
|
android:padding="10dp"
|
android:layout_marginRight="24dp"
|
android:src="@drawable/icon_delete"/>
|
<ImageView
|
android:id="@+id/iv_share"
|
android:layout_width="50dp"
|
android:layout_height="50dp"
|
android:padding="10dp"
|
android:src="@drawable/icon_share"/>
|
|
</LinearLayout>
|
</RelativeLayout>
|