Almost ready.
parent
7ff3f73cdd
commit
fdb62e6fca
|
@ -1,5 +1,6 @@
|
||||||
package pl.tpolgrabia.urbanexplorer;
|
package pl.tpolgrabia.urbanexplorer;
|
||||||
|
|
||||||
|
import android.app.ProgressDialog;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
|
@ -49,6 +50,8 @@ public class MainActivity extends ActionBarActivity {
|
||||||
private static final double MIN_FRAGMENT_ID = HOME_FRAGMENT_ID;
|
private static final double MIN_FRAGMENT_ID = HOME_FRAGMENT_ID;
|
||||||
private static final String FRAG_ID = "FRAG_ID";
|
private static final String FRAG_ID = "FRAG_ID";
|
||||||
private static final int SETTINGS_ID_INTENT_REQUEST_ID = 2;
|
private static final int SETTINGS_ID_INTENT_REQUEST_ID = 2;
|
||||||
|
private static final String PHOTO_INFO = "PHOTO_INFO";
|
||||||
|
private static final String FIRST_TIME_LAUNCH = "FIRST_TIME_LAUNCH_KEY";
|
||||||
public static DisplayImageOptions options;
|
public static DisplayImageOptions options;
|
||||||
private GestureDetectorCompat gestureDetector;
|
private GestureDetectorCompat gestureDetector;
|
||||||
private int currentFragmentId = 0;
|
private int currentFragmentId = 0;
|
||||||
|
@ -57,11 +60,21 @@ public class MainActivity extends ActionBarActivity {
|
||||||
private boolean locationServicesActivated = false;
|
private boolean locationServicesActivated = false;
|
||||||
private GestureDetector.OnGestureListener swipeHandler;
|
private GestureDetector.OnGestureListener swipeHandler;
|
||||||
private PanoramioImageInfo photoInfo;
|
private PanoramioImageInfo photoInfo;
|
||||||
|
private ProgressDialog progressDlg;
|
||||||
|
|
||||||
public StandardLocationListener getLocationCallback() {
|
public StandardLocationListener getLocationCallback() {
|
||||||
return locationCallback;
|
return locationCallback;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void showProgress() {
|
||||||
|
progressDlg.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void hideProgress() {
|
||||||
|
progressDlg.dismiss();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onTouchEvent(MotionEvent event) {
|
public boolean onTouchEvent(MotionEvent event) {
|
||||||
gestureDetector.onTouchEvent(event);
|
gestureDetector.onTouchEvent(event);
|
||||||
|
@ -78,6 +91,7 @@ public class MainActivity extends ActionBarActivity {
|
||||||
NetUtils.setGlobalProxyAuth(this);
|
NetUtils.setGlobalProxyAuth(this);
|
||||||
|
|
||||||
currentFragmentId = 0;
|
currentFragmentId = 0;
|
||||||
|
progressDlg = new ProgressDialog(this);
|
||||||
|
|
||||||
// UNIVERSAL IMAGE LOADER SETUP
|
// UNIVERSAL IMAGE LOADER SETUP
|
||||||
DisplayImageOptions defaultOptions = ImageLoaderUtils.createDefaultOptions();
|
DisplayImageOptions defaultOptions = ImageLoaderUtils.createDefaultOptions();
|
||||||
|
@ -103,9 +117,19 @@ public class MainActivity extends ActionBarActivity {
|
||||||
Log.v(CLASS_TAG, "Restored orig frag id: " + fragId);
|
Log.v(CLASS_TAG, "Restored orig frag id: " + fragId);
|
||||||
currentFragmentId = fragId == null ? 0 : fragId;
|
currentFragmentId = fragId == null ? 0 : fragId;
|
||||||
Log.v(CLASS_TAG, "Set final frag id: " + fragId);
|
Log.v(CLASS_TAG, "Set final frag id: " + fragId);
|
||||||
|
photoInfo = savedInstanceState != null ? (PanoramioImageInfo) savedInstanceState.getSerializable(PHOTO_INFO) : null;
|
||||||
switchFragment();
|
switchFragment();
|
||||||
|
|
||||||
updateSwipeHandler();
|
updateSwipeHandler();
|
||||||
|
|
||||||
|
SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||||
|
if (sharedPrefs.getBoolean(FIRST_TIME_LAUNCH, true)) {
|
||||||
|
Toast.makeText(this, "To interact with any list itemm press long the item. When thgre is no results" +
|
||||||
|
", please, click refresh in the menu", Toast.LENGTH_LONG).show();
|
||||||
|
SharedPreferences.Editor editor = sharedPrefs.edit();
|
||||||
|
editor.putBoolean(FIRST_TIME_LAUNCH, false);
|
||||||
|
editor.commit();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -123,6 +147,8 @@ public class MainActivity extends ActionBarActivity {
|
||||||
startActivityForResult(intent, MainActivity.SETTINGS_ID_INTENT_REQUEST_ID, new Bundle());
|
startActivityForResult(intent, MainActivity.SETTINGS_ID_INTENT_REQUEST_ID, new Bundle());
|
||||||
return true;
|
return true;
|
||||||
case R.id.refresh:
|
case R.id.refresh:
|
||||||
|
progressDlg.setMessage("Refreshing results");
|
||||||
|
progressDlg.show();
|
||||||
switch (currentFragmentId) {
|
switch (currentFragmentId) {
|
||||||
case HOME_FRAGMENT_ID:
|
case HOME_FRAGMENT_ID:
|
||||||
HomeFragment homeFragment = (HomeFragment) getSupportFragmentManager()
|
HomeFragment homeFragment = (HomeFragment) getSupportFragmentManager()
|
||||||
|
@ -145,6 +171,10 @@ public class MainActivity extends ActionBarActivity {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void resetPhotoInfo() {
|
||||||
|
this.photoInfo = null;
|
||||||
|
}
|
||||||
|
|
||||||
public void switchToPhoto(PanoramioImageInfo photoInfo) {
|
public void switchToPhoto(PanoramioImageInfo photoInfo) {
|
||||||
this.photoInfo = photoInfo;
|
this.photoInfo = photoInfo;
|
||||||
FragmentManager fragmentManager = getSupportFragmentManager();
|
FragmentManager fragmentManager = getSupportFragmentManager();
|
||||||
|
@ -321,6 +351,7 @@ public class MainActivity extends ActionBarActivity {
|
||||||
Log.v(CLASS_TAG, "1 Saving current fragment id: " + currentFragmentId);
|
Log.v(CLASS_TAG, "1 Saving current fragment id: " + currentFragmentId);
|
||||||
super.onSaveInstanceState(outState);
|
super.onSaveInstanceState(outState);
|
||||||
outState.putSerializable(FRAG_ID, currentFragmentId);
|
outState.putSerializable(FRAG_ID, currentFragmentId);
|
||||||
|
outState.putSerializable(PHOTO_INFO, photoInfo);
|
||||||
Log.v(CLASS_TAG, "2 Saving current fragment id: " + currentFragmentId);
|
Log.v(CLASS_TAG, "2 Saving current fragment id: " + currentFragmentId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -223,6 +223,9 @@ public class HomeFragment extends Fragment {
|
||||||
ListView locations = (ListView) getView().findViewById(R.id.locations);
|
ListView locations = (ListView) getView().findViewById(R.id.locations);
|
||||||
ArrayAdapter<PanoramioImageInfo> adapter = (ArrayAdapter<PanoramioImageInfo>) locations.getAdapter();
|
ArrayAdapter<PanoramioImageInfo> adapter = (ArrayAdapter<PanoramioImageInfo>) locations.getAdapter();
|
||||||
photos.addAll(images);
|
photos.addAll(images);
|
||||||
|
if (photos.isEmpty()) {
|
||||||
|
Toast.makeText(getActivity(), "No results", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
noMorePhotos = images.isEmpty();
|
noMorePhotos = images.isEmpty();
|
||||||
if (adapter == null) {
|
if (adapter == null) {
|
||||||
locations.setAdapter(new PanoramioAdapter(activity, R.id.list_item, images));
|
locations.setAdapter(new PanoramioAdapter(activity, R.id.list_item, images));
|
||||||
|
@ -277,8 +280,18 @@ public class HomeFragment extends Fragment {
|
||||||
ArrayAdapter<PanoramioImageInfo> adapter = new PanoramioAdapter(activity,
|
ArrayAdapter<PanoramioImageInfo> adapter = new PanoramioAdapter(activity,
|
||||||
R.layout.location_item,
|
R.layout.location_item,
|
||||||
images);
|
images);
|
||||||
|
|
||||||
|
if (images.isEmpty()) {
|
||||||
|
Toast.makeText(getActivity(), "No results", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
ListView locations = (ListView)getView().findViewById(R.id.locations);
|
ListView locations = (ListView)getView().findViewById(R.id.locations);
|
||||||
locations.setAdapter(adapter);
|
locations.setAdapter(adapter);
|
||||||
|
MainActivity mainActivity = (MainActivity) getActivity();
|
||||||
|
if (mainActivity == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mainActivity.hideProgress();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
@ -91,6 +91,7 @@ public class PanoramioShowerFragment extends Fragment {
|
||||||
FragmentActivity acc = getActivity();
|
FragmentActivity acc = getActivity();
|
||||||
if (acc != null) {
|
if (acc != null) {
|
||||||
MainActivity mainActivity = (MainActivity)acc;
|
MainActivity mainActivity = (MainActivity)acc;
|
||||||
|
mainActivity.resetPhotoInfo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,6 +113,16 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
ListView locations = (ListView) getView().findViewById(R.id.wiki_places);
|
ListView locations = (ListView) getView().findViewById(R.id.wiki_places);
|
||||||
locations.setOnItemLongClickListener(new FetchWikiLocationsCallback(WikiLocationsFragment.this, appObjects));
|
locations.setOnItemLongClickListener(new FetchWikiLocationsCallback(WikiLocationsFragment.this, appObjects));
|
||||||
locations.setAdapter(new WikiLocationsAdapter(activity, appObjects));
|
locations.setAdapter(new WikiLocationsAdapter(activity, appObjects));
|
||||||
|
if (appObjects.isEmpty()) {
|
||||||
|
Toast.makeText(getActivity(), "No results", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
|
||||||
|
MainActivity mainActivity = (MainActivity) getActivity();
|
||||||
|
if (mainActivity == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mainActivity.hideProgress();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
|
|
||||||
<ImageView android:id="@+id/wiki_locs_item_img_preview"
|
<ImageView android:id="@+id/wiki_locs_item_img_preview"
|
||||||
android:layout_width="120dp"
|
android:layout_width="120dp"
|
||||||
android:layout_height="120dp"/>
|
android:layout_height="120dp"
|
||||||
|
android:layout_marginRight="10dp"/>
|
||||||
|
|
||||||
<LinearLayout android:id="@+id/wiki_locs_item_desc_container"
|
<LinearLayout android:id="@+id/wiki_locs_item_desc_container"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
|
|
Loading…
Reference in New Issue