mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-15 04:18:53 +01:00
61 lines
2.0 KiB
XML
61 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<org.briarproject.briar.android.view.PullDownLayout
|
|
android:id="@+id/layout"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/briar_black"
|
|
tools:context=".android.conversation.ImageActivity">
|
|
|
|
<com.github.chrisbanes.photoview.PhotoView
|
|
android:id="@+id/photoView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:ignore="ContentDescription"
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic"/>
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appBarLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/msg_status_bubble_background">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/BriarToolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/msg_status_bubble_background"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.vanniktech.emoji.EmojiTextView
|
|
android:id="@+id/contactName"
|
|
style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="@color/action_bar_text"
|
|
tools:text="Contact Name of someone who chose a long name"/>
|
|
|
|
<TextView
|
|
android:id="@+id/dateView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/action_bar_text"
|
|
tools:text="date"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
</org.briarproject.briar.android.view.PullDownLayout>
|