From e32b886e90f94fcedcf9f8f9c4ed1e3e5f267c29 Mon Sep 17 00:00:00 2001 From: Elad Keyshawn Date: Wed, 6 Apr 2016 13:35:35 +0300 Subject: [PATCH] Now indentation normal --- .../kiwixmobile/KiwixMobileActivity.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java b/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java index 655e9654f..270916391 100644 --- a/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java +++ b/src/org/kiwix/kiwixmobile/KiwixMobileActivity.java @@ -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 mPrefState; public static boolean mIsFullscreenOpened; + private static String jsContent; + public Menu menu; + public Toolbar toolbar; + public boolean isFullscreenOpened; + public ImageButton exitFullscreenButton; + public List 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 bookmarks; + private List mWebViews = new ArrayList<>(); + private List mSections = new ArrayList<>(); + private KiwixTextToSpeech tts; + private CompatFindActionModeCallback mCompatCallback; + private ArrayAdapter mLeftArrayAdapter; + private ArrayAdapter 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