2017-01-26 19:38:53 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2018-08-30 07:57:48 +00:00
|
|
|
tools:context="com.topjohnwu.magisk.fragments.SuLogFragment">
|
2017-01-26 19:38:53 +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/log_is_empty"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:textStyle="italic"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2018-09-10 06:27:45 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-01-26 19:38:53 +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-26 19:38:53 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|