Additional improvements for Panoramio Image preview fragment.
parent
272474e7ff
commit
36c448d5d8
|
@ -223,9 +223,16 @@ public class HomeFragment extends Fragment {
|
||||||
EventBus.getDefault().unregister(this);
|
EventBus.getDefault().unregister(this);
|
||||||
PanoramioCacheUtils.savePhotosToCache(getActivity(), photos);
|
PanoramioCacheUtils.savePhotosToCache(getActivity(), photos);
|
||||||
|
|
||||||
|
// FIXME true reason is that hot swapping doesn't fire the activityCreated event while it was recreated
|
||||||
|
if (locationChangedHandler != null) {
|
||||||
|
// FIXME only avoiding crash
|
||||||
EventBus.getDefault().unregister(locationChangedHandler);
|
EventBus.getDefault().unregister(locationChangedHandler);
|
||||||
|
}
|
||||||
|
if (providerChangedHandler != null) {
|
||||||
|
// FIXME only avoiding crash
|
||||||
EventBus.getDefault().unregister(providerChangedHandler);
|
EventBus.getDefault().unregister(providerChangedHandler);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onSaveInstanceState(Bundle outState) {
|
public void onSaveInstanceState(Bundle outState) {
|
||||||
|
|
|
@ -66,6 +66,15 @@ public class PanoramioShowerFragment extends Fragment {
|
||||||
|
|
||||||
photoUrl = (TextView)inflatedView.findViewById(R.id.photo_url);
|
photoUrl = (TextView)inflatedView.findViewById(R.id.photo_url);
|
||||||
photoUrl.setText(imageInfo.getPhotoUrl());
|
photoUrl.setText(imageInfo.getPhotoUrl());
|
||||||
|
photoUrl.setOnLongClickListener(new View.OnLongClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onLongClick(View v) {
|
||||||
|
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
|
||||||
|
Uri.parse(imageInfo.getPhotoUrl()));
|
||||||
|
startActivity(intent);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
photoLocation = (TextView)inflatedView.findViewById(R.id.photo_location);
|
photoLocation = (TextView)inflatedView.findViewById(R.id.photo_location);
|
||||||
photoLocation.setText(imageInfo.getLatitude() + "," + imageInfo.getLongitude());
|
photoLocation.setText(imageInfo.getLatitude() + "," + imageInfo.getLongitude());
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:color="#00ff00" />
|
||||||
|
</selector>
|
|
@ -17,17 +17,17 @@
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_title"
|
<TextView android:id="@+id/photo_title"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent"
|
||||||
android:text="@string/test_string"/>
|
android:text="@string/test_string"
|
||||||
|
android:layout_gravity="left"
|
||||||
<Space android:layout_width="0dp"
|
android:layout_weight="2"/>
|
||||||
android:layout_height="0dp"
|
|
||||||
android:layout_weight="1" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_upload"
|
<TextView android:id="@+id/photo_upload"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent"
|
||||||
android:text="@string/test_string"/>
|
android:text="@string/test_string"
|
||||||
|
android:layout_gravity="right"
|
||||||
|
android:layout_marginLeft="5dp"/>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
|
@ -36,16 +36,17 @@
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_author"
|
<TextView android:id="@+id/photo_author"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"/>
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="left"
|
||||||
|
android:layout_weight="2"/>
|
||||||
|
|
||||||
<Space android:layout_width="0dp"
|
|
||||||
android:layout_height="0dp"
|
|
||||||
android:layout_weight="1" />
|
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_location"
|
<TextView android:id="@+id/photo_location"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="@color/blue"/>
|
android:textColor="@color/blue"
|
||||||
|
android:layout_gravity="right"
|
||||||
|
android:layout_marginLeft="5dp"/>
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -53,7 +54,8 @@
|
||||||
<TextView android:id="@+id/photo_url"
|
<TextView android:id="@+id/photo_url"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center_horizontal"/>
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:textColor="@color/green"/>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue