mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-02 06:25:25 +00:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
|
<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"
|
||
|
tools:context="com.topjohnwu.magisk.SuLogFragment">
|
||
|
|
||
|
<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" />
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/recyclerView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:dividerHeight="@dimen/card_divider_space"
|
||
|
app:layoutManager="android.support.v7.widget.LinearLayoutManager" />
|
||
|
|
||
|
</LinearLayout>
|