mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 18:56:44 -04:00
Now indentation normal
This commit is contained in:
parent
1a0f69d969
commit
e32b886e90
@ -134,44 +134,80 @@ public class KiwixMobileActivity extends AppCompatActivity {
|
||||
private static final int REQUEST_FILE_SELECT = 1234;
|
||||
|
||||
private static final int REQUEST_PREFERENCES = 1235;
|
||||
|
||||
private static final int BOOKMARK_CHOSEN_REQUEST = 1;
|
||||
|
||||
public static ArrayList<State> mPrefState;
|
||||
|
||||
public static boolean mIsFullscreenOpened;
|
||||
|
||||
private static String jsContent;
|
||||
|
||||
public Menu menu;
|
||||
|
||||
public Toolbar toolbar;
|
||||
|
||||
public boolean isFullscreenOpened;
|
||||
|
||||
public ImageButton exitFullscreenButton;
|
||||
|
||||
public List<SectionProperties> sectionProperties;
|
||||
|
||||
public DrawerLayout mRightDrawerLayout;
|
||||
|
||||
public Handler mHandler = new Handler();
|
||||
|
||||
protected boolean requestClearHistoryAfterLoad;
|
||||
|
||||
protected boolean requestInitAllMenuItems;
|
||||
|
||||
protected int requestWebReloadOnFinished;
|
||||
|
||||
private HTMLUtils htmlUtils;
|
||||
|
||||
private boolean mIsBacktotopEnabled;
|
||||
|
||||
private boolean mIsSpeaking;
|
||||
|
||||
private Button mBackToTopButton;
|
||||
|
||||
private ListView mLeftDrawerList;
|
||||
|
||||
private ListView mRightDrawerList;
|
||||
|
||||
private DrawerLayout mLeftDrawerLayout;
|
||||
|
||||
private ArrayList<String> bookmarks;
|
||||
|
||||
private List<KiwixWebView> mWebViews = new ArrayList<>();
|
||||
|
||||
private List<TextView> mSections = new ArrayList<>();
|
||||
|
||||
private KiwixTextToSpeech tts;
|
||||
|
||||
private CompatFindActionModeCallback mCompatCallback;
|
||||
|
||||
private ArrayAdapter<KiwixWebView> mLeftArrayAdapter;
|
||||
|
||||
private ArrayAdapter<TextView> mRightArrayAdapter;
|
||||
|
||||
private FrameLayout mContentFrame;
|
||||
|
||||
private RelativeLayout mToolbarContainer;
|
||||
|
||||
private int mCurrentWebViewIndex = 0;
|
||||
|
||||
private AnimatedProgressBar mProgressBar;
|
||||
|
||||
// Initialized when onActionModeStarted is triggered.
|
||||
private ActionMode mActionMode = null;
|
||||
|
||||
private KiwixWebView tempForUndo;
|
||||
|
||||
private LinearLayout snackbarLayout;
|
||||
|
||||
private RateAppCounter visitCounterPref;
|
||||
|
||||
private int tempVisitCount;
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user