mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
69 lines
3.0 KiB
XML
69 lines
3.0 KiB
XML
<?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:id="@id/container"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:minHeight="?attr/actionBarSize"
|
|
android:background="?attr/conversation_list_toolbar_background"
|
|
app:contentInsetStart="14dp"
|
|
app:contentInsetLeft="14dp"
|
|
android:elevation="4dp"
|
|
android:theme="?attr/actionBarStyle">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView android:id="@+id/toolbar_icon"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"/>
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/white"
|
|
android:textSize="25sp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="66dp"/>
|
|
|
|
<ImageView android:id="@+id/search_action"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_search_white_24dp"
|
|
android:paddingEnd="16dp"
|
|
android:visibility="gone"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
<FrameLayout android:id="@+id/fragment_container"
|
|
android:layout_below="@id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<org.thoughtcrime.securesms.components.SearchToolbar
|
|
android:id="@+id/search_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:elevation="4dp"
|
|
android:visibility="invisible"
|
|
tools:visibility="visible"/>
|
|
|
|
</RelativeLayout> |