Additional improvements for Panoramio Image preview fragment.
parent
272474e7ff
commit
36c448d5d8
|
@ -223,8 +223,15 @@ public class HomeFragment extends Fragment {
|
|||
EventBus.getDefault().unregister(this);
|
||||
PanoramioCacheUtils.savePhotosToCache(getActivity(), photos);
|
||||
|
||||
EventBus.getDefault().unregister(locationChangedHandler);
|
||||
EventBus.getDefault().unregister(providerChangedHandler);
|
||||
// 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);
|
||||
}
|
||||
if (providerChangedHandler != null) {
|
||||
// FIXME only avoiding crash
|
||||
EventBus.getDefault().unregister(providerChangedHandler);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -66,6 +66,15 @@ public class PanoramioShowerFragment extends Fragment {
|
|||
|
||||
photoUrl = (TextView)inflatedView.findViewById(R.id.photo_url);
|
||||
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.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"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/test_string"/>
|
||||
|
||||
<Space android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
android:layout_height="match_parent"
|
||||
android:text="@string/test_string"
|
||||
android:layout_gravity="left"
|
||||
android:layout_weight="2"/>
|
||||
|
||||
<TextView android:id="@+id/photo_upload"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/test_string"/>
|
||||
android:layout_height="match_parent"
|
||||
android:text="@string/test_string"
|
||||
android:layout_gravity="right"
|
||||
android:layout_marginLeft="5dp"/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout android:layout_width="match_parent"
|
||||
|
@ -36,16 +36,17 @@
|
|||
|
||||
<TextView android:id="@+id/photo_author"
|
||||
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"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@color/blue"/>
|
||||
android:textColor="@color/blue"
|
||||
android:layout_gravity="right"
|
||||
android:layout_marginLeft="5dp"/>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
@ -53,7 +54,8 @@
|
|||
<TextView android:id="@+id/photo_url"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"/>
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:textColor="@color/green"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
|
Loading…
Reference in New Issue