remove more or less useless fullscreen mode

This commit is contained in:
Andrew Dolgov 2015-02-12 18:03:45 +03:00
parent 513c440484
commit 5af1199d9d
5 changed files with 4 additions and 36 deletions

View File

@ -23,7 +23,6 @@ import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.widget.FrameLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
@ -318,12 +317,6 @@ public class ArticleImagesPagerActivity extends CommonActivity implements Gestur
@Override
public void onResume() {
super.onResume();
if (m_prefs.getBoolean("full_screen_mode", false)) {
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
getSupportActionBar().hide();
}
}

View File

@ -14,7 +14,6 @@ import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import com.google.gson.JsonElement;
import com.viewpagerindicator.UnderlinePageIndicator;
@ -281,15 +280,6 @@ public class ArticlePager extends Fragment {
} */
m_activity.invalidateOptionsMenu();
if (m_prefs.getBoolean("full_screen_mode", false)) {
m_activity.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
/* if (!m_activity.isCompatMode()) {
m_activity.getSupportActionBar().hide();
} */
}
}
public Article getSelectedArticle() {

View File

@ -37,7 +37,6 @@ public class CommonActivity extends ActionBarActivity {
private boolean m_smallScreenMode = true;
private String m_theme;
private boolean m_fullScreen;
protected SharedPreferences m_prefs;
@ -108,8 +107,7 @@ public class CommonActivity extends ActionBarActivity {
public void onResume() {
super.onResume();
if (!m_theme.equals(m_prefs.getString("theme", CommonActivity.THEME_DEFAULT)) ||
m_fullScreen != m_prefs.getBoolean("full_screen_mode", false)) {
if (!m_theme.equals(m_prefs.getString("theme", CommonActivity.THEME_DEFAULT))) {
Log.d(TAG, "theme changed, restarting");
@ -133,10 +131,8 @@ public class CommonActivity extends ActionBarActivity {
if (savedInstanceState != null) {
m_theme = savedInstanceState.getString("theme");
m_fullScreen = savedInstanceState.getBoolean("fullscreen");
} else {
} else {
m_theme = m_prefs.getString("theme", CommonActivity.THEME_DEFAULT);
m_fullScreen = m_prefs.getBoolean("full_screen_mode", false);
}
initDatabase();
@ -154,7 +150,6 @@ public class CommonActivity extends ActionBarActivity {
super.onSaveInstanceState(out);
out.putString("theme", m_theme);
out.putBoolean("fullscreen", m_fullScreen);
}
public boolean isSmallScreen() {

View File

@ -14,7 +14,6 @@ import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import com.viewpagerindicator.UnderlinePageIndicator;
@ -114,15 +113,6 @@ public class OfflineArticlePager extends Fragment {
@Override
public void onResume() {
super.onResume();
if (m_prefs.getBoolean("full_screen_mode", false)) {
m_activity.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
/* if (!m_activity.isCompatMode()) {
m_activity.getSupportActionBar().hide();
} */
}
}
public void initialize(int articleId, int feedId, boolean isCat) {

View File

@ -142,10 +142,10 @@
android:key="use_volume_keys"
android:summary="@string/use_volume_keys_long"
android:title="@string/use_volume_keys" />
<CheckBoxPreference
<!-- <CheckBoxPreference
android:defaultValue="false"
android:key="full_screen_mode"
android:title="@string/prefs_fullscreen_mode" />
android:title="@string/prefs_fullscreen_mode" /> -->
<CheckBoxPreference
android:defaultValue="true"
android:key="confirm_headlines_catchup"