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.
0
votes
0answers
9 views
android-activity shortly popping up, but not waiting for user input
I'm new to android dev and got stuck on the following problem:
Activity2 with user input (editText) is called by intent on activity1.
Sometimes the a2 shows up and is waiting for the input.(this is ...
0
votes
0answers
17 views
Record the audio and repeatally check amplitude
I want to record the sound repeatedly and check the amplitude after 500ms if amplitude is greater than a given threshold then I want to go another activity.
But When I am try to do this my activity ...
0
votes
1answer
30 views
How to make a callback between Activity and Fragment?
I have this interface in my activity.
public interface LogoutUser {
void logout();
}
My fragment implements this activity, so in my fragment, I have this:
@Override
public void logout() {
...
0
votes
1answer
25 views
Localization does not work on main activity
I have implemented a localization in my app for Croatian and English language. The user can chanage the language in the PreferenceActivity.
This is the code:
public class SettingsActivity extends ...
0
votes
1answer
61 views
Launching dialog activity from services caused 'MainActivity' to also launch
I am designing an app that is used for emergency alerts. The alerts come from a server and a connection to that server is maintained in service.
If the service receives an emergency request from the ...
0
votes
4answers
64 views
Pass an Image from Activity to Adapter Class
I am trying to pass an Image from SingleItem activity to CartAdapter, but i am facing problem, while trying to pass an Item Image.
I want whenever user do click on Add to Cart button in SingleItem ...
0
votes
2answers
56 views
Android - Multilevel Listviews
I am relatively new to Android and working with an online API. I have two activities. The first activity is bringing up a list of search results and placing them into a ListView. This is not a ...
0
votes
3answers
62 views
Problems with Android intents after activating app from background
I've just started with Android development. I've created an App Engine connected Android Project in Eclipse by following this guide: Creating an App Engine Connected Android Project.
The app works, ...
0
votes
4answers
80 views
Android Activity management
I have one question in mind for activity management. Suppose I have 4 activities say for example A1,A2,A3,A4. Now A1 have one button which start activity A2. A2 have 2 buttons which start either A3 ...
0
votes
0answers
27 views
starting new activity from json listview
I am new to android and I'm trying to make an application to my website.
I have a webservice json that shows items in a list view in android.
This list shows only 3 items.
I need to implement this ...
0
votes
1answer
30 views
Intent filter pathPrefix with '#' not working
I'm trying to set an intent filter to launch my activity when user clicks on the following URI:
example.com/pathA/pathB/#pathC/someGUID
so I've added the following XML to the manifest file:
...
3
votes
1answer
48 views
Are Fragments and Fragment Activities inherently faster than Activities?
Are Fragments and Fragment Activities inherently faster than Activities?
If I don't need to load my activity in fragments, should I be using FragmentActivities and Fragments over Activities?
Reason ...
0
votes
2answers
47 views
App is close when back button in on phone but no in another
I have an app that goes to the homeScreen when I click the back button in certain activity using a Galaxy SII (Android 4.0.4) but it does goes back normally to all the previous activities that not ...
0
votes
2answers
66 views
Why is my android activity being stopped?
I have inherited some code from an application that I need to modify (yuck). The activity in question implements SurfaceHolder.Callback and SensorEventListener. This activity is for a custom Camera.
...
0
votes
2answers
34 views
Android: Activity that close your antecessor
I have two Activities, "A" and "B", which "A" opens "B". When the user hits the back button on the Activity "B", i don“t want to see "A", i just want to close "A". So on the "B" i did this:
@Override
...
0
votes
1answer
28 views
Android pass context causes NullPointerException
I am trying to make methods work from other classes than the current activity. In this case there is a backup mechanism which sometimes uses toasts and works flawlessly if the method is in the same ...
0
votes
0answers
29 views
Implement existing Activity(within there extends/implements) in Fragments (Sherlock)
I have developed an app with some activities. Now I would implenent a Navigation with fragments and Sherlock.
I found a lot of examples, but I don't know how to implement my exiting activities.
Since ...
0
votes
0answers
16 views
Capturing Contact pick callback to other than onActivityResult or to other non-Activity controller
I am writing a controller which takes the activity handle, processes data and just invokes activity back. So this controller will invoke contact picker through applying intent on activity.
But I ...
0
votes
0answers
37 views
Creating a media menu items view attached to action bar
I have put an action item on action bar, selecting which should open an option menu item view. It should be opened being attached to action bar.
I created an xml layout file.
Contents:
<?xml ...
0
votes
0answers
17 views
How do you create activity transition dynamically instead of using an stock animation in resource?
For example I want my Activity to launch from a specific area in the screen (by passing in the rect in the intent), then scale to the whole screen. Is it possible.
I know by calling ...
0
votes
0answers
17 views
Android: Runtime error when i auto switch facebook activity to twitter activity
Runtime error when i auto switch facebook activity to twitter activity
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
originalProductName = ...
1
vote
1answer
28 views
Is it possible to use the accelerometer outside of the context of an activity?
Hi I am new (I have only been programming for a few months, so my grasp is shaky) to eclipse and am trying to create a game where the player's avatar is moved with the accelerometer and they must ...
0
votes
0answers
51 views
Android: Navigation bar to jump between activities?
I want each activity in my android app to contain a self made navigation view that looks like this
ActivityStartedFirst > 2ndActivity > YouAreHereActivity
Where ActivityStartedFirst and ...
0
votes
1answer
57 views
App is finished without finish() being called
I have an app that is finished when I click the back button in certain activity, but it goes to a previous activity in a different device. I am thinking that the problem is with the android version.
...
0
votes
1answer
33 views
Start new Activity with time limit
I'm trying to start android call phone activity (Intent.ACTION_CALL) with time limit(Activity will work only in limited time e.g. only 10 seconds). Is there any way to do it or do I have to create my ...
1
vote
1answer
36 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
44 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
42 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
43 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
27 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
107 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
16 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
34 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
47 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
68 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
43 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
42 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
18 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
46 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
53 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
70 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
38 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
40 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
75 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
46 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
53 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 ...



