fedilab-Android-App/app/src/main/res/layouts/mastodon/layout/layout_reactions.xml

32 lines
1.2 KiB
XML
Raw Normal View History

2022-07-19 15:49:47 +02:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/status_reactions"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-08-01 14:29:23 +02:00
android:layout_marginStart="48dp"
2022-09-26 17:08:00 +02:00
android:layout_marginTop="10dp"
2022-08-01 14:29:23 +02:00
android:layout_marginEnd="6dp"
2022-09-26 17:08:00 +02:00
android:layout_marginBottom="5dp"
android:orientation="horizontal">
2022-07-19 15:49:47 +02:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/reactions_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone">
2023-01-22 15:22:59 +01:00
<app.fedilab.android.mastodon.helper.FedilabAutoCompleteTextView
2022-07-19 15:49:47 +02:00
android:id="@+id/fake_edittext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:importantForAutofill="noExcludeDescendants"
android:inputType="text" />
</LinearLayout>
2022-08-01 14:05:54 +02:00
</androidx.appcompat.widget.LinearLayoutCompat>