简体   繁体   中英

Is it possible to change theme in each intent in Android Studio?

I'm coding an Android app that fetches Sun image from NASA site. I wanted to change ActionBar color in each intent. For example to have AIA094 wavelength intent's ActionBar color green and AIA211 intent's ActionBar color as pink. Is it possible in Android Studio?

Use custom style in AndroidManifest.xml in each activity

for example

<activity android:theme="@android:style/Theme.Dialog">
<activity android:theme="@style/CustomTheme">

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM