Activity has multiple meanings. For Android activities, use the more specific [android-activity] tag. For Windows Workflow Foundation activities, use the more specific [workflow-activity] tag.
1
vote
1answer
40 views
Activity vs Fragment : performance differences?
My question is simple : Is there a noticeable performance difference (for the system : cpu, memory allocaiton) between using Activity instead of Fragment (and vice-versa).
I have an simple app, and ...
0
votes
2answers
45 views
Multiple activity instances run?
I have 2 activities.
In my first, i have a button and when i click on it, it start the second activity .
But when i go back to my first and i click for second time my button, my second activity ...
0
votes
1answer
45 views
change current tab after calling tabactivity by intent
I am having a Tabactivity with two tabs and I am calling this tab activity from other activities ..but I want to set tab according to activity from where tab activity has been called .For that I have ...
0
votes
2answers
46 views
Simple Android Activity Causes Crash
I started creating a new activity for my android app, and as I was testing it I encountered a problem. As i touched the button to go to the new activity, the app would crash and send be back to the ...
1
vote
1answer
29 views
Is there anything wrong with exending Activity in order to use runOnUIThread?
I have a class defined like so: (I have pages of code, but I'm only posting the relevant parts for readability).
Now, there's nothing 'wrong' with it, per se and it works great, but someone told me a ...
3
votes
2answers
118 views
Android: Start service at boot, but do not launch GUI
I'm writing an Android app that has two major components: a service which starts up at boot time, and a GUI that I want to start only when I manually launch it via its icon, not when the device boots. ...
0
votes
3answers
28 views
ActivityNotFoundException Android App
Total noob here in the programming world and I'm just trying to figure out, why when I click on a button for a login screen on my app, it just won't run and it shuts down "unexpectedly" in the ...
0
votes
2answers
20 views
Android Annotations EViewGroup unable to recognize EActivity in Eclipse
I have a class set up as an EViewGroup. In it, I'm trying to reference another Activity set up as an EActivity. For some reason, the import isn't resolving, but it resolves fine if I reference the ...
0
votes
1answer
35 views
Swapping Screens in Android with Button Click
i try to make 2 screen activities in Android, and a button on each one, when you click the button to go to the other screen.
I have made everything like in this tutorial: Watch It here
But, if i ...
0
votes
1answer
49 views
call finish() from static method
I am using the Facebook Android SDK and want to close my Activity after a user logs in and gets the user object. In practice I am storing parts of it but I want to close the activity regardless.
...
0
votes
1answer
71 views
Android: Save History When Launch Second Activty
Created 2 activity with same layout, same button placement, same button id, everything is the same
Example:
Added 3 Buttons in first_activity and second_activity, everything placed on the same ...
0
votes
0answers
45 views
showDialog inside another dialog
I want to open a dialog when i touch a button inside my first dialog! the first dialog works fine but when i touch the button inside the dialog the second dialog doesn't show up! i've also passed the ...
0
votes
1answer
45 views
Camera preview freezes after screen lock
The custom camera app I've written stops giving the preview after the screen locks (by pushing lock butten or waiting for a couple of minutes). I don't get an exception, which makes it quite difficult ...
0
votes
0answers
21 views
How do I receive notification on foreground Activity changed
Is there a way to catch a system intent when foreground activity changes.
I looking to notify my service when the foreground Activity changes.
(I know this can be done by busy-wait/pulling , this is ...
0
votes
2answers
41 views
Android Application with multiple activites [closed]
Simple mistake :D Sorry guys yes forget to write declaration :)
0
votes
1answer
47 views
Crash while starting the third activity
I'm new in android. I'm having problem right now. My app always crashes when starting the 3rd activity
here it is the code
package com.example.anagramgame;
import android.app.Activity;
import ...
0
votes
2answers
56 views
The <activity> element must be a direct child of the <application> element
I just wanted to launch my application, but it always fails and gives me this error. Before, it would just install the .apk file, but now it just fails to start at all. I just began and was following ...
0
votes
2answers
73 views
android Nullpointerexception with intent data=null always
I am creating an app, which contains 3 activities, say, A, B and C. Activity A is the main activity, which launches when the app opens.
Activity A is called Activity B using a ...
1
vote
1answer
33 views
android service activity behaviour concept check
After doing some study, I summary few points as below, please let me know if i am wrong.
An activity start a service by "onStartCommand", In the service class.
onStartCommand() {
return ...
0
votes
0answers
47 views
CRM Workflow Process Activity Count not including activities from quick campaigns
In CRM, I am using a workflow to capture the activity count for leads - by assigning the value of a custom field (Activity Count) to the process- activity count value. I am doing this on activity ...
0
votes
1answer
41 views
Android: starting and dismissing progressDialog from Service
I have an android application with this structure:
Activity A,B,C,
Service S
When I'm on the Activity C I open a dialog in which I insert some data. When the Ok button is pressed, I do this two ...
0
votes
0answers
23 views
Android create specific activity stack
I have a specific requirement in the app I am building that relates to the creation of an arbitrary activity stack dependent on the user choice.
If I can try and explain, an example stack may ...
0
votes
2answers
85 views
IntentService Handling Requests from Multiple Activities
Up to this point my IntentService(s) has been working great because each IntentService has only been receiving requests from a single Activity (SQLite INSERTs) and responding to the same Activity.
...
0
votes
2answers
48 views
Multiple Activities in Android
I am creating multiple activities in Android. When I run the app, it can't connect to other activities so just wondering. These are my code, I have 3 xml files and 3 java files.
This is logcat log ...
0
votes
1answer
60 views
Screen orientation change not calling activity methods
So there are lots of SO posts on this topic but neither working in my case.
Orientation is not calling any method of activity.
I tried all possible ways mentioned like:
Putting ...
0
votes
0answers
48 views
StartActivity wont work from onclick event
i'm trying to log in with facebook and pass the user's info to another activity
The problem is when i run the startActivity method with the intent the onclick event gets freeze's and doesn't do ...
0
votes
2answers
55 views
Android: Updating UI using Handler
I implemented an Android Application that consists of four activity (A,B,C,D).
A calls B; B calls C and C calls D.
The activity A implements a Handler
Handler handler=new Handler(){
public ...
0
votes
1answer
32 views
Calling main Activity to start when a Share Intent is called
I was not sure how to search for this thing, so ended up posting the question.
I have an app, that requires Authentication for using it. I added a Share Intent to it, so that other apps could be able ...
0
votes
1answer
25 views
Android exiting from other screen orientation
I have MainActivity. I start new Activity from it.
Then in that new activity I have layout and layout-land file. I have a close button and a handler of it which performs finish() method. If I open the ...
0
votes
1answer
47 views
cannot “startActivity” from service while main activity is stopped
In main activity of application I startService:
startService(new Intent(MainActivity.this, BluetoothService.class).putExtra("address", address));
which establish bluetooth connection with PC. ...
0
votes
1answer
40 views
app crashes when i change the order of my XML RelativeLayout android
The title says it all, my app keeps crashing everytime i change the layout view, i need the button to be on the very top and the imageView1 to be at the very bottom, with iv_photo being in between ...
0
votes
0answers
18 views
the activity cycle/flow of a andriod music player
I am trying to implement a simple music player to learn andriod programming.
I created a activity(user interface) and a service(playing music). I am not so certain about the behavior/flow when users ...
0
votes
1answer
22 views
Integrate IBM Connections Activity Stream into a web page
I am wondering if there is a way to have/ to integrate/ to add the IBM Connections activity streams into a web page.
So that my web page will display the activity streams.
The activity stream would be ...
0
votes
1answer
13 views
How to create log activity from java to MySQL?
I want to create a log activity for each user when they login from my apps and insert into MySQL database with the structure like
id_log (int, primary key, auto increment)
username (varchar)
time ...
0
votes
2answers
65 views
Using a TimePicker, DatePicker, and an AlertDialog in the same class/activity
I've got 3 buttons contained within one Activity. The first button is used to launch a custom AlertDialog with an EditText. The second button needs to open a DatePicker. The third button needs to open ...
0
votes
1answer
80 views
Notifications and AlarmManager - cancelling the alarm I set
I am making a sample app just for educational purposes, where I create a notification every minute. I also have a button to cancel the alarm.
What I do is that when the notification comes, I click it ...
0
votes
4answers
28 views
Not passing text through activites in android
I am trying to get the text from one activity (Second.class) and pass it to another activity(Third.class). The string im trying to get is a TextView of an airport code.
This is the piece of code i ...
0
votes
2answers
50 views
changing text from one activity to another
I having trouble with making a Textview change text when i push a button from another activity, the button is working from within the same activity as its own but it shuts down my app as soon as I ...
3
votes
2answers
77 views
Is it possible to make an app without an activity
I want to make an app that will not have any activity. it can have broadcast receiver and service and widget. Bocz when ever we create a project it asks for activity name
0
votes
2answers
25 views
How to open a Intent with data according to the item clicked on a ListView?
I have a ListView, actually generated by parsing a XML file downloaded from Internet.
This XML file contains data about a person: IdNumber, Name, Age, PhotoURL, Birthday, Phone numbers, Email ...
0
votes
0answers
28 views
Manipulating backstack from a service
I have a service that is started from an activity/fragment, MainActivity. A list is populated from broadcasts from the service. The user can click a list item and see item details in a details ...
0
votes
2answers
37 views
Call Activity with Custom Arguments
I would like to ask about calling an Activity with arguments. I have seen many examples about it. But I would like to ask an explanation why it is somehow "not easy" or "not simple" to create(call) an ...
0
votes
1answer
58 views
Return to previous activity using onBackPressed() without finish()?
I have 2 activities. Activity1 lists a bunch of songs and when one is selected, it go plays the selected song in Activity2. Now I can press Back to go back to Activity1 but I overridden the ...
4
votes
2answers
85 views
Show title bar from code
In the manifest file I have this line to my application tag
android:theme="@android:style/Theme.NoTitleBar"
and basically every activity doesn't have a title bar, but for one of the activities I ...
1
vote
1answer
31 views
Detect invoker of startActivityForResult
I have many buttons on an activity, all of them invoke same activity by using following code
startActivityForResult()
Results are caught in
void onActivityResult(int requestCode, int resultCode, ...
1
vote
1answer
49 views
Android: Is the UI-thread working similar to the Swing UI thread?
EDIT: I modified the question a bit. I did now actually implement my example. Before I transferred my actual code to a simpler example which actually did some thing different in the end.
I am ...
0
votes
0answers
48 views
How to close full screen video capture intent programmatically in Android
If I start a Media Capture activity (For eg: Video capture) is there a way to close this window programmatically?
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
...
0
votes
4answers
77 views
Call finish() inside onPause() but not when orientation changes
I have an app that needs to call finish when someone exits its main activity (so i do not want it to be paused), even by pressing home activity has to be finished, to handle this currently i simply ...
0
votes
2answers
36 views
update textview in activity from Fragment
How to update TextView in Activity A from DialogFragment ?
in my case, after click the close button in DialogFragment, i need to call the method that can change TextView
this is method from ...
0
votes
3answers
37 views
“Failure Delivering Result ” - onActivityForResult
I have a LoginActivity (User Logs in). It is basically its own Activity that is themed like a dialog (to appear as if a dialog). It appears over a ShertlockFragmentActivity.
What I want is if ...


