mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-05 00:55:08 -05:00
9728609c4c
Now when toggling the foldable view, the screen no longer jumps half a line up or down to recenter itself when the view is displayed.
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/foldableControl"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:id="@+id/foldableIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="10dp"
|
|
android:src="?attr/iconActionExpand" />
|
|
|
|
<TextView
|
|
android:id="@+id/foldableText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text=""
|
|
android:textColor="?android:attr/textColorTertiary" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/foldableContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:visibility="invisible" />
|
|
|
|
</LinearLayout> |