<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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/activity_bgcolor"
tools:context=".activity.ShareTwoPictureActivity">
<android.support.constraint.ConstraintLayout
android:id="@+id/nav_bar"
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="@color/white"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/gallery_icon"
android:layout_width="60dp"
android:layout_height="match_parent"
android:scaleType="center"
android:src="@drawable/app_publish_close_icon"
app:layout_constraintLeft_toLeftOf="parent" />
<TextView
android:id="@+id/gallery_del"
android:layout_width="60dp"
android:layout_height="match_parent"
android:background="@drawable/plugin_camera_del_state"
app:layout_constraintRight_toRightOf="parent" />
</android.support.constraint.ConstraintLayout>
<ImageView
android:id="@+id/picture"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/orange"
android:scaleType="centerCrop"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/nav_bar" />
</android.support.constraint.ConstraintLayout>
|