Open sjd753 opened 7 years ago
@sjd753 could you explain how you managed to change the theme for FullScreenImageGalleryActivity
? I've also used the tools:replace="android:theme"
but the theme is not applied...
This works for me
<activity
android:name="com.etiennelawlor.imagegallery.library.activities.ImageGalleryActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:launchMode="singleTask"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name="com.etiennelawlor.imagegallery.library.activities.FullScreenImageGalleryActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:launchMode="singleTask"
android:theme="@style/AppTheme.NoActionBar"
tools:replace="android:theme" />
Feature required: Use App Theme or change theme of the activities. Although theme for FullScreenImageGalleryActivity can be replaced using tools:replace="android:theme".