How to change activity in android?
I am making simple game. I have 3 activities. First activity is main menu (FirstActivity class).
First activity has following code:
It calls second activity where, second activity has following code:
MovementView class extends SurfaceView. MovementView class is where I write all game code.
So I want to make when lives == 0, it changes to ThirdActivity. How do I do that?
I have tried putting code similar to FirstActivity’s class but it doesn’t seems to work.
If I put
((Activity)getContext()).finish();
it just jumps back to FirstActivity, but that’s not what I need, I need it to go to ThirdActivity class.
4 Answers 4
Finally I can answer, had to wait 24h.
So in the end the only variant which I managed to make work was like this:
FirstActivity class:
on click
I don’t know is that the difference between onDestroy and onStop but both work. The only unpleasant thing is that when lives == 0 it goes back to FirstActivity (for like half second) and only then to GameOver class.
It didn’t work when you tried it because you’re trying to create an intent from a View, not an Activity. You’ll need to use the view’s context ( getContext() ) instead of this . You’ll also need to use startActivity rather than startActivityForResult , unless you’re actually planning to use the result (although casting the context to an Activity should be fairly safe if you’re only using it from your own code).
Since you start Activity2 with ..ForResult() , you could also set the 2nd Activity’s result (with setResult(GAME_OVER) before you finish it) so that Activity1 starts Activity3 in onActivityResult() if it makes sense that Activity2 is not there anymore when Activity3 was shown.
RE: @Yoni Samlan, well if I put
It shows The constructor Intent(MovementView, Class) is undefined for first line, and The method startActivityForResult(Intent, int) is undefined for the type MovementView for the second line.
Источник
How to change first activity in Android Studio?
I want to change my first activity, first I have activity named MainActivity. And I add new activity named ActivityFirst. Surely I have to change AndroidManifest.xml. Previously I have androidManifest like this:
And after I add my new activity, also I change my androidManifest file.
I’m confused where I put the MainActivity after I add ActivityFirst. This my ActivityFirst.java:
2 Answers 2
All activities must be represented by elements in the manifest file. Any that are not declared there will not be seen by the system and will never be run.
So in your case, it’d be like this:
In Android, The first Activity to show when a app is launched is tagged LAUNCHER in your manifest file.
All you need do to change the Launcher Activity is to add an intent-filter tag inside the activity tag.
So if your activity tag was self closing, you change it and add intent filter tag inside the tag.
Here is an illustration.
The above code in your Manifest will make ActivityFirst the launcher activity,
while the below code will make MainActivity the launcher activity.
Источник
How to start new activity on button click
In an Android application, how do you start a new activity (GUI) when a button in another activity is clicked, and how do you pass data between these two activities?
26 Answers 26
Extras are retrieved on the other side via:
Don’t forget to add your new activity in the AndroidManifest.xml:
Current responses are great but a more comprehensive answer is needed for beginners. There are 3 different ways to start a new activity in Android, and they all use the Intent class; Intent | Android Developers.
- Using the onClick attribute of the Button. (Beginner)
- Assigning an OnClickListener() via an anonymous class. (Intermediate)
- Activity wide interface method using the switch statement. (not-«Pro»)
Here’s the link to my example if you want to follow along:
- Using the onClick attribute of the Button. (Beginner)
Buttons have an onClick attribute that is found within the .xml file:
Advantage: Easy to make on the fly, modular, and can easily set multiple onClick s to the same intent.
Disadvantage: Difficult readability when reviewing.
- Assigning an OnClickListener() via an anonymous class. (Intermediate)
This is when you set a separate setOnClickListener() to each button and override each onClick() with its own intent.
Advantage: Easy to make on the fly.
Disadvantage: There will be a lot of anonymous classes which will make readability difficult when reviewing.
- Activity wide interface method using the switch statement. (not-«Pro»)
This is when you use a switch statement for your buttons within the onClick() method to manage all the Activity’s buttons.
Advantage: Easy button management because all button intents are registered in a single onClick() method
For the second part of the question, passing data, please see How do I pass data between Activities in Android application?
Источник
Change application’s starting activity
I have created the meat and guts of my application but I want to add a different activity that will be the starting point (sort of a log-in screen).
1 I have a fairly decent handle on how to switch between activities (based on this article: http://www.linux-mag.com/id/7498) but I’m not sure how to go about creating a new one (with eclipse).
2 Once I have a new activity created, how can I set it as the default activity of my application? I presume I could just change the name of the classes. but is there a more elegant way to handle that (maybe within the AndroidManifest.xml )?
13 Answers 13
Yes, you use the AndroidManifest.xml file. You can actually even have more than one launcher activity specified in your application manifest. To make an activity seen on the launcher you add these attributes to your activity in the manifest:
Go to AndroidManifest.xml in the root folder of your project and change the Activity name which you want to execute first.
If you are using Android Studio and you might have previously selected another Activity to launch.
Click on Run > Edit configuration and then make sure that Launch default Activity is selected.
Follow to below instructions:
1:) Open your AndroidManifest.xml file.
2:) Go to the activity code which you want to make your main activity like below.
such as i want to make SplashScreen as main activity
3:) Now copy the below code in between activity tags same as:
and also check that newly added lines are not attached with other activity tags.
This is easy to fix.
- Changes to the Launcher activity are also stored in the Debug configuration.
- Go to Run > Debug Configurations and edit the setting.
- There is also a similar setting in Intellij under Run > Edit Configurations select Run default Activity and it will no longer save the setting in this fashion.
It’s simple. Do this, in your Manifest file.
Just go to your AndroidManifest.xml file and add like below
then save and run your android project.
You add this you want to launch activity android:exported=»true» in manifest file like
Open java file of this activity and right click then click on Run ‘main Activity’
Open java file of this activity and press Ctrl + Shift + F10 .
In a recent project I changed the default activity in AndroidManifest.xml with:
In Android Studio 3.6; this seems to broken. I’ve used this technique in example applications, but when I use it in this real-world application it falls flat. The IDE once again reports:
Error running app: Default activity not found.
The IDE still showed a configuration error in the «run app» space in the toolbar (yellow arrow in this screenshot)
To correct this error I’ve tried several rebuilds of the project, and finally File >> «Invalidate Cache/Restart». This did not help. To run the application I had to «Edit Configurations» and point at the specific activity instead of the default activity:
Источник
Полный список
В этом уроке мы:
— создадим и вызовем второе Activity в приложении
Урок был обновлен 12.06.2017
Мы подобрались к очень интересной теме. На всех предыдущих уроках мы создавали приложения, которые содержали только один экран (Activity). Но если вы пользуетесь смартфоном с Android, то вы замечали, что экранов в приложении обычно больше. Если рассмотреть, например, почтовое приложение, то в нем есть следующие экраны: список аккаунтов, список писем, просмотр письма, создание письма, настройки и т.д. Пришла и нам пора научиться создавать многоэкранные приложения.
Application/Library name: TwoActivity
Module name: p0211twoactivity
Package name: ru.startandroid.p0211twoactivity
Откроем activity_main.xml и создадим такой экран:
На экране одна кнопка, по нажатию которой будем вызывать второй экран.
Открываем MainActivity.java и пишем код:
Мы определили кнопку btnActTwo и присвоили ей Activity в качестве обработчика. Реализация метода onClick для кнопки пока заполнена частично — определяем, какая кнопка была нажата. Чуть позже здесь мы будем вызывать второй экран. Но сначала этот второй экран надо создать.
Если помните, при создании проекта у нас по умолчанию создается Activity.
От нас требуется только указать имя этого Activity – обычно мы пишем здесь MainActivity. Давайте разбираться, что при этом происходит.
Мы уже знаем, что создается одноименный класс MainActivity.java – который отвечает за поведение Activity. Но, кроме этого, Activity «регистрируется» в системе с помощью манифест-файла — AndroidManifest.xml.
Давайте откроем этот файл:
Нас интересует тег application. В нем мы видим тег activity с атрибутом name = MainActivity. В activity находится тег intent-filter с определенными параметрами. Пока мы не знаем что это и зачем, сейчас нам это не нужно. Забегая вперед, скажу, что android.intent.action.MAIN показывает системе, что Activity является основной и будет первой отображаться при запуске приложения. А android.intent.category.LAUNCHER означает, что приложение будет отображено в общем списке приложений Android.
Т.е. этот манифест-файл — это что-то типа конфигурации. В нем мы можем указать различные параметры отображения и запуска Activity или целого приложения. Если в этом файле не будет информации об Activity, которое вы хотите запустить в приложении, то вы получите ошибку.
Android Studio при создании модуля создала MainActivity и поместила в манифест данные о нем. Если мы надумаем сами создать новое Activity, то студия также предоставит нам визард, который автоматически добавит создаваемое Activity в манифест.
Давайте создадим новое Activity
Жмем правой кнопкой на package ru.startandroid.p0211twoactivity в папке проекта и выбираем New -> Activity -> Empty Activity
В появившемся окне вводим имя класса – ActivityTwo, и layout – activity_two.
Класс ActivityTwo создан.
В setContentView сразу указан layout-файл activty_two.
Он был создан визардом
Откройте activty_two.xml и заполните следующим кодом:
Экран будет отображать TextView с текстом «This is Activity Two».
Сохраните все. Класс ActivityTwo готов, при отображении он выведет на экран то, что мы настроили в layout-файле two.xml.
Давайте снова заглянем в файл манифеста
Появился тег activity с атрибутом name = .ActivityTwo. Этот тег совершенно пустой, без каких либо параметров и настроек. Но даже пустой, он необходим здесь.
Нам осталось вернуться в MainActivity.java и довершить реализацию метода onClick (нажатие кнопки), а именно — прописать вызов ActivityTwo. Открываем MainActivity.java и добавляем строки:
(добавляете только строки 2 и 3)
Обновите импорт, сохраните все и можем всю эту конструкцию запускать. При запуске появляется MainActivity
Нажимаем на кнопку и переходим на ActivityTwo
Код вызова Activity пока не объясняю и теорией не гружу, урок и так получился сложным. Получилось много текста и скриншотов, но на самом деле процедура минутная. Поначалу, возможно, будет непонятно, но постепенно втянемся. Создадим штук 5-6 новых Activity в разных проектах и тема уляжется в голове.
Пока попробуйте несколько раз пройти мысленно эту цепочку действий и усвоить, что для создания Activity необходимо создать класс (который наследует android.app.Activity) и создать соответствующую запись в манифест-файле.
На следующем уроке:
— разбираемся в коде урока 21
— теория по Intent и Intent Filter (не пропустите, тема очень важная)
— немного о Context
Присоединяйтесь к нам в Telegram:
— в канале StartAndroid публикуются ссылки на новые статьи с сайта startandroid.ru и интересные материалы с хабра, medium.com и т.п.
— в чатах решаем возникающие вопросы и проблемы по различным темам: Android, Kotlin, RxJava, Dagger, Тестирование
— ну и если просто хочется поговорить с коллегами по разработке, то есть чат Флудильня
— новый чат Performance для обсуждения проблем производительности и для ваших пожеланий по содержанию курса по этой теме
Источник