intent tag

39 questions


1 answers
74 views
0
Creating Multiple Alarms Using AlarmManager Alarms

Hi, everyone.I'm creating an alarm on Android using AlarmManager and PengingIntent.The alarm goes off three times every morning, lunch, and dinnerThe alarm is not working properly. The alarm may sound...


1 answers
50 views
0
How do I insert and receive String data as putExtra() and getExtra()?

Please tell me how to write getExtra() and putExtra(). How I'm going to use it is There is a string variable called str, and I want to save this value. I want to save it and send the data from this ac...

1 years ago

1 answers
83 views
0
I have a question for Android listview.

ListView listView = findViewById(R.id.listview); SingerAdapter adapter = new SingerAdapter(); adapter.addItem(new SingerItem(1,2)); adapter.addItem(new SingerItem(1,2)); adapter.addItem(new SingerItem...

1 years ago

1 answers
93 views
0
I'm asking you how to change all the characters in the list ('1', '2',...) to numbers without a for statement

['1', '2', '3'] -> [1, 2, 3]How do I turn a number stored in text into a number?I think there is a way to do it without using the for statement, but I don't know what to do.


1 answers
93 views
0
How do I get back to my previous activity on Android?

I'd like to make a simple app to return to my previous activity. What code do I need to return to the previous activity?

1 years ago

1 answers
101 views
0
Can you use Intent on Android to make the phone ring?

posted_by = 111-333-222-4; String uri = tel: + posted_by.trim() ; Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse(uri)); startActivity(intent);I tried to make the phone ring o...

1 years ago

1 answers
86 views
0
When I get the String value with int, I pay you...Only the viewers are coming in.

//Second.classf =fstE.getText().toString(); l = lstE.getText().toString();Intent i = new Intent(Second.this, T1_text.class);i.putExtra(lastName,l);i.putExtra(firstName,f);startActivity();//T1_text.cl...

1 years ago

1 answers
87 views
0
The int function says there is no putExtra... (android studio)

Intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);Intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault());Intent.putExtra(RecognizerInte...

1 years ago

1 answers
133 views
0
I want to log in to the Android studio and go over the screen.

I'm programming by myself. I don't have any knowledge, but I'm studying hard by googling.Create a login button linked to Naver, Kakao, and Google (Firebase) and I think I'm logged in, but I want to mo...

« - 4 -

© 2024 OneMinuteCode. All rights reserved.