2016-10-16 19:05:07 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2021-04-20 09:45:40 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
2021-05-26 10:47:14 -03:00
|
|
|
android:layout_height="match_parent">
|
2016-10-16 19:05:07 -07:00
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2021-04-20 09:45:40 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_above="@+id/giphy_logo"
|
|
|
|
android:orientation="vertical">
|
2016-10-16 19:05:07 -07:00
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2021-04-20 09:45:40 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-26 10:47:14 -03:00
|
|
|
android:background="@color/signal_background_primary">
|
2016-10-16 19:05:07 -07:00
|
|
|
|
2021-05-26 10:47:14 -03:00
|
|
|
<FrameLayout
|
2021-04-20 09:45:40 -03:00
|
|
|
android:id="@+id/giphy_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-26 10:47:14 -03:00
|
|
|
android:background="@color/signal_background_primary"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.keyboard.emoji.KeyboardPageSearchView
|
|
|
|
android:id="@+id/giphy_search_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
app:search_bar_tint="@color/signal_background_secondary"
|
|
|
|
app:search_hint="@string/KeyboardPagerFragment_search_giphy"
|
|
|
|
app:search_icon_tint="@color/signal_icon_tint_secondary"
|
|
|
|
app:show_always="true" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
2016-10-16 19:05:07 -07:00
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2016-10-16 19:05:07 -07:00
|
|
|
|
2021-04-20 09:45:40 -03:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2016-10-16 19:05:07 -07:00
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2016-10-16 19:05:07 -07:00
|
|
|
|
2021-04-20 09:45:40 -03:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/giphy_logo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:background="@color/black"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:src="@drawable/poweredby_giphy" />
|
2016-10-16 19:05:07 -07:00
|
|
|
|
|
|
|
</RelativeLayout>
|