mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-02-21 19:28:30 +00:00
21 lines
510 B
Java
21 lines
510 B
Java
![]() |
package com.topjohnwu.magisk;
|
||
|
|
||
|
|
||
|
import android.app.Fragment;
|
||
|
import android.os.Bundle;
|
||
|
import android.view.LayoutInflater;
|
||
|
import android.view.View;
|
||
|
import android.view.ViewGroup;
|
||
|
|
||
|
public class SuLogFragment extends Fragment {
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||
|
Bundle savedInstanceState) {
|
||
|
// Inflate the layout for this fragment
|
||
|
return inflater.inflate(R.layout.fragment_su_log, container, false);
|
||
|
}
|
||
|
|
||
|
}
|