Questions about creating or managing Activities in Android. In Android Applications, an Activity is a Component that provides a user interface allowing the user to do something. Simple examples are: dial the phone, take a photo, send an email, or view a map.

learn more… | top users | synonyms

0
votes
0answers
6 views

Dropbox Core API for Android: Not returning after Authentication

I am developing two android applications: the first is a normal application with a launcher and so on the other is a application only with a viewer activity (see the manifest): <activity ...
0
votes
2answers
27 views

android Asynctask call method in Activity

I am downloading a video from a ftp-server via AsyncTask and save it on the device. After the download (onPostExecute) i want to play the video directly in the videoview in my activity, but the ...
0
votes
0answers
6 views

Tab not visible

Tab is not visible. At first I saw tab without content and following one tutorial I can't see tabs at all. I just add in menu.xml two new xml files with exact xml code, and few differences in java ...
0
votes
3answers
37 views

OnClickListener throws NullPointerException on startActivity

I am using Android API 17 with Android Development Tools (ADT) I have a Help buttton which is listening for click event. HelpButtonListener is listening for the click event for Help button as ...
0
votes
2answers
24 views

onActivityResult Android

I am new to android and have the following query. I am building an app, which contains 2 activities first and second which send messages to each other. 'first' sends a message to 'second' and then ...
0
votes
0answers
11 views

Phonegap Android Contact Picker Plugin (updating a plugin)

In my PhoneGap app, I am trying to get the native Android contact picker to launch so I can fetch some phone numbers. I researched online and couldn't find much until I saw the ContactView plugin: ...
-1
votes
0answers
6 views

Android Fatal exception :main

I am designing an app to solve logic equations by Quine-Mccluskey method.Whenever i try to run the app i get this error message.Please help. Logcat Error 05-17 20:10:30.192: ...
0
votes
2answers
40 views

Android transparent area click

Situation: i have this button (image 1) that launches the activity (image 2). Question: how can i make it to where when the user clicks the background (transparent) on the second image it will go ...
0
votes
1answer
13 views

Handle return from the minimized state

in my application I want to ask the user for a password every time when he gets application from minimized state. ie the user is working, then turned the app off and then to get into it again, he has ...
0
votes
1answer
17 views

Routing key input to different Activities

Let me first start off by explaining my problem - I am working on an application that is lying between the a system activity (com.google.tv.player.PlayerActivity) and user-space. The system ...
0
votes
1answer
6 views

Associate different voice of ListView to a different activity

I'm creating a menu with a ListView where there is a division with different typology of routes: Historical, naturalistic etc. package it.sii.android.helloandroid; import ...
1
vote
1answer
11 views

MonoCross: KeyNotFoundException in MXDialogActivityView.OnCreate() when re-starting application

I've been using Xamarin's Mono for Android and the MonoCross framework to develop an application, which is currently running under Android (2.3, 4.0 and others). In my app, I have a main activity, ...
1
vote
1answer
26 views

How to open main activity when application was killed?

A = Main Activity B = Some Activity Normal case A > B > Home Button > B Application was killed case A > B > Home Button > idle for some time > application killed > open app again > A How can I do ...
0
votes
1answer
14 views

Go to another activity when Button is pressed from Flash Video Android

I have a WebView that contains a html file that contains a Flash plugin (a video). I want that When user press a button from Flash video then it goes to the another activity of Android. Is it ...
1
vote
1answer
23 views

Why startActivityForResult doesn't use a callback or a higher level way for returning results?

I'm new to Android, so I might be missing something. I'm writing a "login" Activity. The Activity returns security tokens for the app to use later on. Everything works fine. What I don't quite like ...
1
vote
0answers
21 views

Why aren't the ARObjects being drawn when the AndARActivity is called from another activity?

When I start the AndARActivity as the main activity, the camera is activated and the ARObjects will be drawn correctly. If I call the AndARActivity from another, normal Activity, the camera is ...
-2
votes
0answers
28 views

EditText event hadling

I have only one text view and one edit text in my activity. Once user enter some value in edit text and click outside of edit text some logic should perform (want to start ...
1
vote
0answers
15 views

java.lang.RuntimeException: Unable to resume activity (While setting an image captured from camera)

I am trying to use camera class in my app. I just want to click a picture and set on the imageview and then posting it on some url. Posting on url working fine but sometime problem occurs while ...
0
votes
0answers
14 views

Orientation issue with child activity for tabactivity android

I am developing an application where I have a tab activity and 4 child activities(Tabs). Now in my second tab I need to send one bluetooth request on every time i start this activity so I added this ...
0
votes
0answers
21 views

Return to Activity after Twitter login

I have created an Activity and in there a Twitter share button. When the user is logged in it will post to their Twitter, if the user does not have a Twitter App they will go to the Twitter webpage. ...
0
votes
2answers
30 views

finish() not working properly

In my app, whenever calling the finish() method, wherever it was, I am not taken to the previous activity, rather I am directed to mainActivity. finish(); My aim is, showing the user the activity ...
0
votes
0answers
21 views

screen config change not working >=4.0 android version( working in 2.2 )

I am just learning the broadcast receiver implementation. I have created a demo app where app will braodcast on screen orientation change. my code is like this:: public class MainActivity extends ...
0
votes
2answers
30 views

How to make an activity launch itself again (stacking on top of previous activities)?

I am implementing a drill-down list with various API calls (depending on how far down the list we currently are). The first time we open the activity (EventListActivity) it calls APICall1. When you ...
0
votes
1answer
30 views

android passing values to another activity but cannot read

I am trying to pass values to a new activity but cannot read the values from the new activity. here is my code, Intent myIntent = new Intent(Photo2Activity.this, MainActivity.class); ...
0
votes
0answers
17 views

addToBackStack doesn't work, closes the activity instead of popping back fragments

I have a probleam and I can't find a solution anywhere. My app doesn't return to previous fragment when I press the back button, instead closes the activity. I have an activity that displays 4 ...
0
votes
1answer
37 views

How do you clear the saved instance data?

In an activity's onCreate, you get passed a savedInstanceState Bundle, how can you clear that data? I'm referring not to the Bundle you're getting itself, but to the data this Bundle is created/loaded ...
0
votes
1answer
40 views

Android app crash when try to overwrite text in a TextView from other class

I try to change 3 textviews in a class called UserProfile() calling the method update() from the class UpdateProfile(), the class UserProfile do something like this: package com.safm; import ...
0
votes
0answers
27 views

OnActivityResult never called inside a fragment

I need to implement the call activity with result method. Thus, here is the calling instructions (they are inside a fragment): Intent intent = new Intent(getActivity(), CalendarFilterActivity.class); ...
0
votes
1answer
32 views

Android - Call Main Class Activity

I would like to go back to the Main Activity at a certain point in my application. I tried calling the Activity in an Intent as usual, however since the Activity name for the main class is called ...
0
votes
3answers
43 views

Is this a strange way to create an Intent?

I have a Library Project and a project each for the free and paid versions for one of my apps. In the Library project I have a 'Base Activity'. This 'Base Activity' must start child activities ...
0
votes
3answers
61 views

How to clean variables in an Activity?

In my Application when on pressing on the back button returning to previous activity, the variables are still set up and containing values, my question is how can I reset all variables in any ...
0
votes
3answers
36 views

Activitiy's layout opens more than one?

I have three activities connected witdh three layouts. When I call an activity everytime before one collect background. eg. I am on the mainactivity then, I call B then call main again when I am on ...
0
votes
1answer
38 views

Activity lifecycle strange behavior in sleep mode (libGDX game)

I have very strange behavior of Activity in my LibGDX game - when I play game and then press power button sending device to sleep mode. I've added logs to Activity's callback methods and that's what I ...
0
votes
0answers
27 views

Passing WebView from one activity to another

I am doing hybrid application. It has two activities login and home. On login activity a web view with many java scripts is loaded. Now I want to use same webview in home activity because it takes ...
0
votes
1answer
28 views

Android: two activities with two maps; the second one doesn't load properly

I try to explain better: My app has a tab bar (a TabHost) and two of the tabs are two activities with a map each. When i click on the first tab I get the map and i can use it as i want. When I click ...
0
votes
2answers
45 views

Can have 2 or more intent in one activity?

I'm trying to get the location through gps from another activity, different than the main. And I need to make another activity, a JSON parser. So, I want to know if there is a way to have the ...
0
votes
3answers
45 views

Android - How to reference a Fragment from another Fragment within the same Activity?

PROBLEM: When I try to reference the layout of one Fragment from another via the parent Activity. The layout I am trying to access is always null. I believe it is something to do with the onCreate() ...
0
votes
0answers
8 views

Create 2 similar from the start activities to switch between

I cannot seem to find out how to have 2(+) screens application (Android) in a case when i need them to be just the same, but adjustable. For example, my app is having stickers on a screen (you can ...
2
votes
2answers
34 views

How to avoid NoClassDefFoundError with different Android API versions

I'm developing an application for APIs from v10 to v17. My activity implements OnDragListener which is available only from API v14. public class MyActivity extends Activity implements ...
1
vote
1answer
46 views

How can I drag and drop with multiple activities?

I used the Service call to create a Floating Window that floats over all other views/activities. This window has its own Activity and is different from Dialog. Now i want to add a Drag&Drop ...
-1
votes
0answers
49 views

When I hit the “back” button, my application does not return to the previous activity. It unexpectedly closes

Here is the code that calls the second activity from my main activity: public void onClick(View v) { Intent myIntent = new Intent(Soundboard.this,Jon.class); ...
0
votes
1answer
30 views

Start Activity after getting GPS Location

How can I start another activity after I have retrieved the location of the phone through GPS? I have a splash screen that I would like to dismiss after the phone has gotten the location of the phone. ...
1
vote
2answers
31 views

issue with android.os.Messenger and android.os.Handler with rotation change

Im trying to use the pattern of Activity-Service-Messenger to comunicate my Activity and Service. (like explained here http://viktorbresan.blogspot.mx/2012/09/intentservice-and-inter-process.html) ...
0
votes
3answers
55 views

Back “Button” in a Android App [duplicate]

I want to create a Back "Button" in my Android app. I have the standard Layout in the Eclipse project, with the small image in the left top corner. Now i want to open a new activity and when i click ...
1
vote
1answer
24 views
+50

Secure keyguard always shows up between activities

i have the following problem: i have my Activity A where i press a button and Activity B shows up. Both activities A and B have the WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD | ...
1
vote
2answers
61 views

Android - SherlockActionBar - What is benefit of using SherlockFragments?

I get the benefits of the SherlockActionBar 100%. What is the benefit of SherlockFragments though? You have your main Activity /FragmentActivity which is hosting all of your other fragments etc. and ...
2
votes
2answers
87 views

Android navigation from sliding menu - fragments or activities?

I'm upgrading an Android application that used the Dashboard pattern to the Sliding Menu, with a library by jfeinstein. Originally I had a DashboardActivity that had 6 buttons, each of which started ...
1
vote
1answer
54 views

android app running in background with timer task,suddenly stop the task

I make app in android with scheduled task and running in background, but when i open other app and do it something with my device,then i back to my app to check the task,the task is stopped. i have ...
1
vote
5answers
76 views

System.exit(0) doesnt close all my activities?

I have 2 activity, so activity 1 go to activity 2 then on activity 2 I have an exit button. But when I click it, all it only exited the activity number 2 and return to activity 1 again. Its basically ...
0
votes
2answers
21 views

setOnClickListener return -1 History for android Activity

Im sorry to ask, this question might sound stupid but...=(.. How do I code onclickListener so that the activity return -1 history?? you know basically like the return button that the phone already ...

1 2 3 4 5 52