Magisk/app/src/main/res/layout/fragment_superuser.xml

27 lines
984 B
XML
Raw Normal View History

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-01-25 17:13:23 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2017-01-25 17:13:23 +00:00
<TextView
android:id="@+id/empty_rv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:fontFamily="sans-serif-light"
android:gravity="center"
android:text="@string/no_apps_found"
android:textSize="20sp"
android:textStyle="italic"
android:visibility="gone" />
2018-09-10 06:27:45 +00:00
<androidx.recyclerview.widget.RecyclerView
2017-01-25 17:13:23 +00:00
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:dividerHeight="@dimen/card_divider_space"
2018-09-10 06:27:45 +00:00
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
2017-01-25 17:13:23 +00:00
</LinearLayout>