Home > database >  Can I use Compose and Standard Activities?
Can I use Compose and Standard Activities?

Time:04-22

I found a good tutorial how to make a calendar with Jetpack Compose, for that I created a Compose Empty Activity to implement it.

Since it's for school I can't use only compose to develop my app, my question is if I can have some activites made with compose and others with normal kotlin code and xml?

I was testing it and it keeps crashing when I use an Intent to go from a compose activity to a standard one.

Is there a way to use the two methods? Thank you!

CodePudding user response:

my question is if I can have some activites made with compose and others with normal kotlin code and xml?

Yes!

I was testing it and it keeps crashing when I use an Intent to go from a compose activity to a standard one.

You might want to ask a separate question, where you provide the stack trace of your crash and the code that is causing the crash. Make sure that all of your activities have <activity> elements in your manifest! See this answer for a demonstration of launching a third-party activity; to launch one of your own, construct the proper Intent for it.

  • Related