123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout 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:id="@+id/messageFragment"
- android:orientation="vertical"
- tools:context=".ui.show.MessageShowFragment">
- <androidx.cardview.widget.CardView
- android:id="@+id/cardShowView"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- app:cardBackgroundColor="#5e35b1"
- tools:ignore="MissingConstraints">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <ImageButton
- android:id="@+id/show_message_close_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="0dp"
- android:layout_marginStart="0dp"
- android:background="?attr/selectableItemBackgroundBorderless"
- android:padding="8dp"
- android:src="@mipmap/ic_close_purple" />
- <ImageButton
- android:id="@+id/show_message_dots_button"
- android:layout_width="56dp"
- android:layout_height="match_parent"
- android:layout_marginStart="320dp"
- android:layout_marginLeft="320dp"
- android:background="?attr/selectableItemBackgroundBorderless"
- android:padding="8dp"
- android:src="@mipmap/ic_more_vert_dots_purple" />
- <ImageButton
- android:id="@+id/show_message_attach_button"
- android:layout_width="56dp"
- android:layout_height="match_parent"
- android:layout_marginStart="-114dp"
- android:layout_marginLeft="-114dp"
- android:layout_toEndOf="@id/show_message_dots_button"
- android:layout_toRightOf="@id/show_message_dots_button"
- android:background="?attr/selectableItemBackgroundBorderless"
- android:padding="8dp"
- android:src="@mipmap/ic_attach_purple" />
- </RelativeLayout>
- </androidx.cardview.widget.CardView>
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:gravity="top">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/textview_border"
- android:layout_marginStart="12dp"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp">
- <TextView
- android:id="@+id/show_From"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textAppearance="@style/TextAppearance.AppCompat.Body1"
- android:layout_marginStart="12dp"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/textview_border"
- android:layout_marginStart="12dp"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp">
- <TextView
- android:id="@+id/show_To"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="12dp"
- android:textAppearance="@style/TextAppearance.AppCompat.Body1"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp" />
- </LinearLayout>
- <LinearLayout
- android:background="@drawable/textview_border"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="12dp"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp">
- <TextView
- android:id="@+id/show_Subject"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:textAppearance="@style/TextAppearance.AppCompat.Body1"
- android:layout_marginStart="12dp"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp"/>
- </LinearLayout>
- <LinearLayout
- android:background="@drawable/textview_border"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="12dp"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp">
- <TextView
- android:id="@+id/show_Message"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:minHeight="200dp"
- android:textAppearance="@style/TextAppearance.AppCompat.Body1"
- android:layout_marginStart="12dp"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:layout_marginEnd="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="12dp" />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- <FrameLayout
- android:id="@+id/show_Layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </LinearLayout>
|