Skip to content
This repository has been archived by the owner on Sep 8, 2019. It is now read-only.

Commit

Permalink
- update v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kollerlukas committed Mar 23, 2018
1 parent 55d693f commit 74fe2ed
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "us.koller.cameraroll"
minSdkVersion 19
targetSdkVersion 27
versionCode 34
versionName "v1.0.4"
versionCode 35
versionName "v1.0.5"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/us/koller/cameraroll/ui/AlbumActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ private void setupMenu() {
@Override
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
public void onActivityReenter(int requestCode, Intent data) {
/*super.onActivityReenter(requestCode, data);*/
super.onActivityReenter(requestCode, data);
Log.d("AlbumActivity", "onActivityReenter: " + this);
if (data != null) {
sharedElementReturnPosition = data.getIntExtra(EXTRA_CURRENT_ALBUM_POSITION, -1);
Expand All @@ -452,7 +452,7 @@ public void onLayoutChange(View v, int l, int t, int r, int b,
recyclerView.scrollToPosition(sharedElementReturnPosition);
}
}
super.onActivityReenter(requestCode, data);
/*super.onActivityReenter(requestCode, data);*/
}

@Override
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/activity_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="32dp"
android:elevation="4dp"
tools:ignore="UseCompoundDrawables">

<TextView
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/res/values-v21/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

<item name="android:windowSharedElementEnterTransition">@transition/album_item_transition
</item>
<item name="android:windowSharedElementExitTransition">@transition/album_item_transition
</item>

<item name="android:windowTranslucentNavigation">false</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
Expand All @@ -46,6 +48,8 @@

<item name="android:windowSharedElementEnterTransition">@transition/album_item_transition
</item>
<item name="android:windowSharedElementExitTransition">@transition/album_item_transition
</item>

<item name="android:windowTranslucentNavigation">false</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
Expand Down

0 comments on commit 74fe2ed

Please sign in to comment.