Signal-Android/app/src/main/res/layout/giphy_activity.xml

47 lines
1.8 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2016-10-16 19:05:07 -07:00
2019-06-05 15:47:14 -04:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
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
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary">
2016-10-16 19:05:07 -07:00
<org.thoughtcrime.securesms.giph.ui.GiphyActivityToolbar
android:id="@+id/giphy_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="?attr/actionBarStyle"
app:layout_scrollFlags="scroll|enterAlways" />
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
<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
<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>