diff options
author | Docile-Alligator <chineseperson5@gmail.com> | 2022-05-17 11:12:39 +0000 |
---|---|---|
committer | Docile-Alligator <chineseperson5@gmail.com> | 2022-05-17 11:12:39 +0000 |
commit | 3df7b761a29159368b4df32a28b1caed5006783a (patch) | |
tree | b14ccf5f4bc3c6cf410c14268adb186f302ef0f4 /app/src/main/res | |
parent | 63ea1f54d0aa22521cf3937fa44e4814886b59dd (diff) | |
download | infinity-for-reddit-3df7b761a29159368b4df32a28b1caed5006783a.tar infinity-for-reddit-3df7b761a29159368b4df32a28b1caed5006783a.tar.gz infinity-for-reddit-3df7b761a29159368b4df32a28b1caed5006783a.tar.bz2 infinity-for-reddit-3df7b761a29159368b4df32a28b1caed5006783a.tar.lz infinity-for-reddit-3df7b761a29159368b4df32a28b1caed5006783a.tar.xz infinity-for-reddit-3df7b761a29159368b4df32a28b1caed5006783a.tar.zst infinity-for-reddit-3df7b761a29159368b4df32a28b1caed5006783a.zip |
Animate the software keyboard in ViewPrivateMessgesActivity.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/activity_view_private_messages.xml | 117 |
1 files changed, 58 insertions, 59 deletions
diff --git a/app/src/main/res/layout/activity_view_private_messages.xml b/app/src/main/res/layout/activity_view_private_messages.xml index c25eabc7..01c42f70 100644 --- a/app/src/main/res/layout/activity_view_private_messages.xml +++ b/app/src/main/res/layout/activity_view_private_messages.xml @@ -1,88 +1,87 @@ <?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" +<androidx.coordinatorlayout.widget.CoordinatorLayout 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/linear_layout_view_private_messages_activity" + android:id="@+id/coordinator_layout_view_private_messages_activity" android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical"> + android:layout_weight="1" + tools:context=".activities.ViewPrivateMessagesActivity"> - <androidx.coordinatorlayout.widget.CoordinatorLayout + <com.google.android.material.appbar.AppBarLayout + android:id="@+id/appbar_layout_view_private_messages_activity" android:layout_width="match_parent" - android:layout_height="0dp" - android:layout_weight="1" - android:id="@+id/coordinator_layout_view_private_messages_activity" - tools:context=".activities.ViewPrivateMessagesActivity"> + android:layout_height="wrap_content" + android:theme="@style/AppTheme.AppBarOverlay"> - <com.google.android.material.appbar.AppBarLayout - android:id="@+id/appbar_layout_view_private_messages_activity" + <androidx.appcompat.widget.Toolbar + android:id="@+id/toolbar_view_private_messages_activity" android:layout_width="match_parent" android:layout_height="wrap_content" - android:theme="@style/AppTheme.AppBarOverlay"> - - <androidx.appcompat.widget.Toolbar - android:id="@+id/toolbar_view_private_messages_activity" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:minHeight="?attr/actionBarSize" - app:popupTheme="@style/AppTheme.PopupOverlay" - app:navigationIcon="?attr/homeAsUpIndicator" /> - - </com.google.android.material.appbar.AppBarLayout> - - <androidx.recyclerview.widget.RecyclerView - android:id="@+id/recycler_view_view_private_messages" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:clipToPadding="false" - app:layout_behavior="@string/appbar_scrolling_view_behavior" /> + android:minHeight="?attr/actionBarSize" + app:navigationIcon="?attr/homeAsUpIndicator" + app:popupTheme="@style/AppTheme.PopupOverlay" /> - </androidx.coordinatorlayout.widget.CoordinatorLayout> + </com.google.android.material.appbar.AppBarLayout> <LinearLayout - android:id="@+id/edit_text_wrapper_linear_layout_view_private_messages_activity" android:layout_width="match_parent" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:orientation="vertical" - android:layout_gravity="bottom"> + app:layout_behavior="@string/appbar_scrolling_view_behavior" > - <View - android:id="@+id/edit_text_divider_view_private_messages_activity" + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/recycler_view_view_private_messages" android:layout_width="match_parent" - android:layout_height="1dp" /> + android:layout_height="0dp" + android:layout_weight="1" + android:clipToPadding="false" /> <LinearLayout + android:id="@+id/edit_text_wrapper_linear_layout_view_private_messages_activity" android:layout_width="match_parent" android:layout_height="wrap_content" - android:orientation="horizontal"> + android:orientation="vertical"> + + <View + android:id="@+id/edit_text_divider_view_private_messages_activity" + android:layout_width="match_parent" + android:layout_height="1dp" /> - <EditText - android:id="@+id/edit_text_view_private_messages_activity" - android:layout_width="0dp" + <LinearLayout + android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_weight="1" - android:padding="16dp" - android:hint="@string/message" - android:inputType="textMultiLine" - android:textSize="?attr/font_default" - android:background="#00000000" - android:textColor="?attr/primaryTextColor" - android:fontFamily="?attr/font_family" - android:maxLines="3" /> + android:orientation="horizontal"> + + <EditText + android:id="@+id/edit_text_view_private_messages_activity" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:background="#00000000" + android:fontFamily="?attr/font_family" + android:hint="@string/message" + android:inputType="textMultiLine" + android:maxLines="3" + android:padding="16dp" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_default" /> + + <ImageView + android:id="@+id/send_image_view_view_private_messages_activity" + android:layout_width="56dp" + android:layout_height="56dp" + android:layout_gravity="center_vertical" + android:background="?attr/selectableItemBackgroundBorderless" + android:clickable="true" + android:focusable="true" + android:scaleType="center" + android:src="@drawable/ic_send_black_24dp" /> - <ImageView - android:id="@+id/send_image_view_view_private_messages_activity" - android:layout_width="56dp" - android:layout_height="56dp" - android:layout_gravity="center_vertical" - android:scaleType="center" - android:src="@drawable/ic_send_black_24dp" - android:clickable="true" - android:focusable="true" - android:background="?attr/selectableItemBackgroundBorderless" /> + </LinearLayout> </LinearLayout> </LinearLayout> -</LinearLayout>
\ No newline at end of file +</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file |