Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
https://kotlinlang.org/Ummmm can you be more specific? Like what activity? What phone do you have? What's kotlin?
Just remember the more details you give us, the better we can help.
for example, a button in the mainActivity which has onClick property for moving the user to another Activity, lets call it "rollActivity". how can i do it?Ummmm can you be more specific? Like what activity? What phone do you have? What's kotlin?
Just remember the more details you give us, the better we can help.
ok so this is a development question......i'll alert the mods to move this to the dev forum.for example, a button in the mainActivity which has onClick property for moving the user to another Activity, lets call it "rollActivity". how can i do it?
and kotlin? and where do i insert the code?public void onClick(View v) {
Intent intent = new Intent(this, rollActivity.class);
startActivity(intent);
}
The code above is in Java.