mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-04 03:06:41 -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_FILE_SELECT = 1234;
|
||||||
|
|
||||||
private static final int REQUEST_PREFERENCES = 1235;
|
private static final int REQUEST_PREFERENCES = 1235;
|
||||||
|
|
||||||
private static final int BOOKMARK_CHOSEN_REQUEST = 1;
|
private static final int BOOKMARK_CHOSEN_REQUEST = 1;
|
||||||
|
|
||||||
public static ArrayList<State> mPrefState;
|
public static ArrayList<State> mPrefState;
|
||||||
|
|
||||||
public static boolean mIsFullscreenOpened;
|
public static boolean mIsFullscreenOpened;
|
||||||
|
|
||||||
private static String jsContent;
|
private static String jsContent;
|
||||||
|
|
||||||
public Menu menu;
|
public Menu menu;
|
||||||
|
|
||||||
public Toolbar toolbar;
|
public Toolbar toolbar;
|
||||||
|
|
||||||
public boolean isFullscreenOpened;
|
public boolean isFullscreenOpened;
|
||||||
|
|
||||||
public ImageButton exitFullscreenButton;
|
public ImageButton exitFullscreenButton;
|
||||||
|
|
||||||
public List<SectionProperties> sectionProperties;
|
public List<SectionProperties> sectionProperties;
|
||||||
|
|
||||||
public DrawerLayout mRightDrawerLayout;
|
public DrawerLayout mRightDrawerLayout;
|
||||||
|
|
||||||
public Handler mHandler = new Handler();
|
public Handler mHandler = new Handler();
|
||||||
|
|
||||||
protected boolean requestClearHistoryAfterLoad;
|
protected boolean requestClearHistoryAfterLoad;
|
||||||
|
|
||||||
protected boolean requestInitAllMenuItems;
|
protected boolean requestInitAllMenuItems;
|
||||||
|
|
||||||
protected int requestWebReloadOnFinished;
|
protected int requestWebReloadOnFinished;
|
||||||
|
|
||||||
private HTMLUtils htmlUtils;
|
private HTMLUtils htmlUtils;
|
||||||
|
|
||||||
private boolean mIsBacktotopEnabled;
|
private boolean mIsBacktotopEnabled;
|
||||||
|
|
||||||
private boolean mIsSpeaking;
|
private boolean mIsSpeaking;
|
||||||
|
|
||||||
private Button mBackToTopButton;
|
private Button mBackToTopButton;
|
||||||
|
|
||||||
private ListView mLeftDrawerList;
|
private ListView mLeftDrawerList;
|
||||||
|
|
||||||
private ListView mRightDrawerList;
|
private ListView mRightDrawerList;
|
||||||
|
|
||||||
private DrawerLayout mLeftDrawerLayout;
|
private DrawerLayout mLeftDrawerLayout;
|
||||||
|
|
||||||
private ArrayList<String> bookmarks;
|
private ArrayList<String> bookmarks;
|
||||||
|
|
||||||
private List<KiwixWebView> mWebViews = new ArrayList<>();
|
private List<KiwixWebView> mWebViews = new ArrayList<>();
|
||||||
|
|
||||||
private List<TextView> mSections = new ArrayList<>();
|
private List<TextView> mSections = new ArrayList<>();
|
||||||
|
|
||||||
private KiwixTextToSpeech tts;
|
private KiwixTextToSpeech tts;
|
||||||
|
|
||||||
private CompatFindActionModeCallback mCompatCallback;
|
private CompatFindActionModeCallback mCompatCallback;
|
||||||
|
|
||||||
private ArrayAdapter<KiwixWebView> mLeftArrayAdapter;
|
private ArrayAdapter<KiwixWebView> mLeftArrayAdapter;
|
||||||
|
|
||||||
private ArrayAdapter<TextView> mRightArrayAdapter;
|
private ArrayAdapter<TextView> mRightArrayAdapter;
|
||||||
|
|
||||||
private FrameLayout mContentFrame;
|
private FrameLayout mContentFrame;
|
||||||
|
|
||||||
private RelativeLayout mToolbarContainer;
|
private RelativeLayout mToolbarContainer;
|
||||||
|
|
||||||
private int mCurrentWebViewIndex = 0;
|
private int mCurrentWebViewIndex = 0;
|
||||||
|
|
||||||
private AnimatedProgressBar mProgressBar;
|
private AnimatedProgressBar mProgressBar;
|
||||||
|
|
||||||
// Initialized when onActionModeStarted is triggered.
|
// Initialized when onActionModeStarted is triggered.
|
||||||
private ActionMode mActionMode = null;
|
private ActionMode mActionMode = null;
|
||||||
|
|
||||||
private KiwixWebView tempForUndo;
|
private KiwixWebView tempForUndo;
|
||||||
|
|
||||||
private LinearLayout snackbarLayout;
|
private LinearLayout snackbarLayout;
|
||||||
|
|
||||||
private RateAppCounter visitCounterPref;
|
private RateAppCounter visitCounterPref;
|
||||||
|
|
||||||
private int tempVisitCount;
|
private int tempVisitCount;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user