lawloretienne / ImageGallery

A gallery used to host an array of images
Apache License 2.0
645 stars 116 forks source link

Use App Theme Or change theme #25

Open sjd753 opened 7 years ago

sjd753 commented 7 years ago

Feature required: Use App Theme or change theme of the activities. Although theme for FullScreenImageGalleryActivity can be replaced using tools:replace="android:theme".

manijak commented 6 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...

androidovshchik commented 4 years ago

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" />