Additional improvements for Panoramio Image preview fragment.

master
Tomasz Półgrabia 2016-10-22 23:40:03 +02:00
parent 272474e7ff
commit 36c448d5d8
4 changed files with 38 additions and 16 deletions

View File

@ -223,8 +223,15 @@ public class HomeFragment extends Fragment {
EventBus.getDefault().unregister(this); EventBus.getDefault().unregister(this);
PanoramioCacheUtils.savePhotosToCache(getActivity(), photos); PanoramioCacheUtils.savePhotosToCache(getActivity(), photos);
EventBus.getDefault().unregister(locationChangedHandler); // FIXME true reason is that hot swapping doesn't fire the activityCreated event while it was recreated
EventBus.getDefault().unregister(providerChangedHandler); if (locationChangedHandler != null) {
// FIXME only avoiding crash
EventBus.getDefault().unregister(locationChangedHandler);
}
if (providerChangedHandler != null) {
// FIXME only avoiding crash
EventBus.getDefault().unregister(providerChangedHandler);
}
} }
@Override @Override

View File

@ -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());

View File

@ -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>

View File

@ -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>