Skip to content

Commit

Permalink
Fix for crash in Android 4.4, also added saving the position of the s…
Browse files Browse the repository at this point in the history
…tory list
  • Loading branch information
bishopmatthew committed Nov 22, 2013
1 parent f832651 commit 888c8cf
Show file tree
Hide file tree
Showing 6 changed files with 100 additions and 22 deletions.
14 changes: 7 additions & 7 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.airlocksoftware.hackernews"
android:installLocation="auto"
android:versionCode="12"
android:versionName="2.0.6" >
android:versionCode="13"
android:versionName="2.1.0" >

<uses-sdk
android:minSdkVersion="8"
Expand Down Expand Up @@ -32,11 +32,11 @@
<activity
android:name=".activity.AboutActivity"
android:label="@string/about" />
<activity
android:name=".activity.DonationActivity"
android:excludeFromRecents="true"
android:label="@string/donate"
android:launchMode="singleTask" />
<!--<activity-->
<!--android:name=".activity.DonationActivity"-->
<!--android:excludeFromRecents="true"-->
<!--android:label="@string/donate"-->
<!--android:launchMode="singleTask" />-->
<activity
android:name=".activity.LoginActivity"
android:label="@string/login" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.android.vending.billing;

import android.os.Bundle;

interface IMarketBillingService {
/** Given the arguments in bundle form, returns a bundle for results. */
Bundle sendBillingRequest(in Bundle bundle);
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import android.view.inputmethod.InputMethodManager;
import android.widget.TextView;
import android.widget.Toast;

import com.airlocksoftware.hackernews.R;
import com.airlocksoftware.hackernews.data.UserPrefs;
import com.airlocksoftware.hackernews.data.UserPrefs.Theme;
Expand All @@ -25,7 +24,6 @@
import com.airlocksoftware.holo.checkable.CheckableViewManager.OnCheckedViewChangedListener;
import com.airlocksoftware.holo.utils.Utils;
import com.airlocksoftware.holo.utils.ViewUtils;
import com.bugsense.trace.BugSenseHandler;
import com.slidingmenu.lib.SlidingMenu;
import com.slidingmenu.lib.SlidingMenu.OnOpenListener;

Expand Down Expand Up @@ -62,7 +60,9 @@ public void onCreate(Bundle savedState) {
mUserPrefs = new UserPrefs(this);
retrieveTheme();
setWindowBackground();
BugSenseHandler.initAndStartSession(getApplicationContext(), getString(R.string.bugsense_api_key));

/* TODO I'm over the quota anyways -- going to move to Crashlytics in the next version. */
// BugSenseHandler.initAndStartSession(getApplicationContext(), getString(R.string.bugsense_api_key));

// initialize ActionBarActivity layout after setting theme and window background
super.initialize();
Expand Down
38 changes: 38 additions & 0 deletions src/com/airlocksoftware/hackernews/data/AppData.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package com.airlocksoftware.hackernews.data;

import android.content.Context;
import android.content.SharedPreferences;

/**
* TODO
*
* @author matthewbbishop
*/
public class AppData {

// State
private Context mContext;
private SharedPreferences mPrefs;
private SharedPreferences.Editor mEditor;

// Constants
public static final String PREFS_NAME = AppData.class.getSimpleName() + ".data";
public static final String STORY_LIST_POSITION = AppData.class.getSimpleName() + ".story_list_position";

public AppData(Context context) {
mContext = context;
mPrefs = mContext.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
mEditor = mPrefs.edit();
}

public void saveStoryListPosition(int position) {
mEditor.putInt(STORY_LIST_POSITION, position);
mEditor.commit();
}

public int getStoryListPosition() {
int position = mPrefs.getInt(STORY_LIST_POSITION, 0);
return position;
}

}
11 changes: 5 additions & 6 deletions src/com/airlocksoftware/hackernews/data/UserPrefs.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package com.airlocksoftware.hackernews.data;

import java.text.SimpleDateFormat;
import java.util.Calendar;

import org.apache.commons.lang3.StringUtils;

import android.annotation.SuppressLint;
import android.content.Context;
import android.content.SharedPreferences;
import org.apache.commons.lang3.StringUtils;

import java.text.SimpleDateFormat;
import java.util.Calendar;

/** Encapsulates methods for interacting with SharedPreferences that the user's preferences. **/
public class UserPrefs {
Expand Down Expand Up @@ -159,7 +158,7 @@ public void saveOpenInBrowser(boolean enabled) {
// }

public enum Theme {
LIGHT, DARK;
LIGHT, DARK
}

public Theme getTheme() {
Expand Down
29 changes: 23 additions & 6 deletions src/com/airlocksoftware/hackernews/fragment/StoryFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.Loader;
import android.view.LayoutInflater;
Expand All @@ -15,18 +16,14 @@
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;

import com.airlocksoftware.hackernews.R;
import com.airlocksoftware.hackernews.activity.MainActivity;
import com.airlocksoftware.hackernews.adapter.StoryAdapter;
import com.airlocksoftware.hackernews.data.AppData;
import com.airlocksoftware.hackernews.interfaces.SharePopupInterface;
import com.airlocksoftware.hackernews.interfaces.TabletLayout;
import com.airlocksoftware.hackernews.loader.StoryLoader;
import com.airlocksoftware.hackernews.model.Comment;
import com.airlocksoftware.hackernews.model.Page;
import com.airlocksoftware.hackernews.model.Request;
import com.airlocksoftware.hackernews.model.Result;
import com.airlocksoftware.hackernews.model.Story;
import com.airlocksoftware.hackernews.model.*;
import com.airlocksoftware.hackernews.parser.StoryParser.StoryResponse;
import com.airlocksoftware.hackernews.view.SharePopup;
import com.airlocksoftware.holo.actionbar.ActionBarButton;
Expand All @@ -45,6 +42,7 @@ public class StoryFragment extends Fragment implements ActionBarClient, LoaderMa
private Request mRequest = Request.NEW;
private Result mLastResult = Result.EMPTY;
private boolean mIsLoading = false;
private boolean mShouldRestoreListState;

// Activity interfaces
TabletLayout mTabletLayout = null;
Expand Down Expand Up @@ -150,9 +148,20 @@ public void onActivityCreated(Bundle savedInstanceState) {
mAdapter.onRestoreInstanceState(savedInstanceState);
}

mShouldRestoreListState = true;

refreshContentVisibility();
}

@Override
public void onPause() {
/* Save list state to shared prefs (since we kill the activity when we switch to the comments list) */
FragmentActivity activity = getActivity();
if(activity == null) return;
new AppData(activity).saveStoryListPosition(mList.getFirstVisiblePosition());
super.onPause();
}

@SuppressWarnings("deprecation")
private void setupTabletBackgroundColors() {
Resources res = getActivity().getResources();
Expand Down Expand Up @@ -207,10 +216,12 @@ private void findViews() {

@Override
public void onSaveInstanceState(Bundle outState) {
/* Save to bundle */
if (!mCallbacks.storyFragmentIsInLayout()) return;
outState.putSerializable(PAGE, mPage);
outState = mAdapter.onSaveInstanceState(outState);
super.onSaveInstanceState(outState);

}

// Loader interface
Expand Down Expand Up @@ -264,6 +275,12 @@ public void onLoadFinished(Loader<StoryResponse> loader, StoryResponse response)
showMoreLink();
checkForExpiredCache(response);
refreshContentVisibility();

if(mShouldRestoreListState) {
mShouldRestoreListState = false;
int listPosition = new AppData(getActivity()).getStoryListPosition();
mList.setSelectionFromTop(listPosition, 0);
}
}

private void checkForExpiredCache(StoryResponse response) {
Expand Down

0 comments on commit 888c8cf

Please sign in to comment.