Tagged Questions
0
votes
0answers
18 views
Adapter's getView called multiple times for same positions, how to know what view will appear on the screen?
I know the reason why the getView method of an Adapter is called more than once, but is there a way for knowing which of the returned view will be actually displayed on the activity?
Until now I put ...
0
votes
1answer
18 views
why onActivityResult dosenot work when I callback from another activity
This is the first time for me to ask question in the foreign website.I know there are many master here.I hope someone can help me.thx.Following is my question:
First I in one activity i use ActionBar ...
0
votes
1answer
18 views
Image download and saving- android
I have some images in gridview. when i click on the image , the image will open in another activity. In that activity i had a save button. When the save button is clicked the image should download and ...
0
votes
2answers
36 views
Activity and Java folder missing in new Android Studio projects
I've installed the Google I/O build for Android Studio but when I create new projects the folder inside the source folder is nowhere to be found. Anyone got any ideas?
0
votes
2answers
29 views
Can we findviewbyid() of an element not available in the main activity?
Can we get using findviewbyid an element not part of the main current activity but another hidden activity ?
0
votes
3answers
29 views
Can we interact with background activity when displaying a dialog over it in android
I want to display a dialog over an activity but still want to interact with background activity to perform something, while the dialog is being displayed. How can this be done?
0
votes
1answer
25 views
Android: avoiding tons of “dummy” one-fragment activities?
I have several fragments that are used in combination in one activity on a tablet.
On a handset, however, one fragment is one activity.
So for the handset I have to create multiple XML files and ...
2
votes
6answers
37 views
How to Clear all previous activities~?
Activity Flow in my app.
WelcomeActivity -> SignInActivity -> SignUpActivity ->
TabsActivity(this is main) -> ...
I want to close all previous activities (Welcome, SignIn, SignUp) when ...
1
vote
3answers
43 views
Custom dialog or custom activity?
I want to use user conformations many times in my app. Like "You're about to do 'this', or 'that'. Are you ok ?" with yes/no buttons, or "Tip : do 'this' or 'that'" with a checkbox to 'don't show ...
0
votes
1answer
33 views
Process running in background with timer Task killed by android
I have app with timer task,my app is save the current cell ref and neighbor cell into csv at interval time. My problem is,when i start the app and press 'HOME' screen at device and then i running ...
-1
votes
1answer
30 views
Where can I find (free) templates for activities in Android? [closed]
Is there a website where I can find templates for activities which contain standard and common used menu structures (like the fullscreen activity included in the adt bundle)? I would like to install ...
0
votes
0answers
12 views
junit.framework.AssertionFailedError while testing back button on android
i am new to Robotium.I'm facing an issue "junit.framework.AssertionFailedError" while executing the test case which using Robotium.Test scenario is checking Back button functionality.here's my code
...
1
vote
2answers
26 views
Transparent Help Activity in Android
I'm developing a Android App, and I would like to implement a help like this:
http://developer.android.com/design/media/help_cling.png
How i can do this? It's beautiful and I think is very usefull.
...
0
votes
1answer
11 views
Android Google Map v2 - Starting activity when clicking on marker infoWindow
I have seen that people are finding a lot of difficulties with this specific task and I am in need of help aswell.
I have successfully created Markers on a Map using the default code that Google has ...
0
votes
1answer
29 views
Is it okay to call finish() directly after invoking Provider methods?
Setup: FirstActivity opens SecondActivity, SecondActivity asks user to select images, give them titles; when user is finished they click "Save" button that invokes method saveToDatabase which calls ...
0
votes
2answers
40 views
Android: MainActivity is suddenly created again in different Activity without being called?
I m facing a weird behaviour. I start a new Activity B from within my MainActivity with
Intent mIntent = new Intent(this, ActivityB.class);
mIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //tried ...
-1
votes
2answers
35 views
Android SlidingDrawer : How can I slide an activity just using motion event except handle
I'd like to make layout just like avast! Mobile Security app's main view.
Is it sliding drawer or just using overridePendingTransition animation effect?
I think it is sliding drawer. But there is ...
6
votes
3answers
32 views
How to resolve double tap on Button Issue in android?
Mockup of my Application :
Problem :
When click on button1 it just call Intent of ActivitySecond
button1.setOnClickListener(this);
public void onClick(View v) {
// TODO Auto-generated method ...
0
votes
2answers
12 views
get active textview or activity using IME android
Im developing an IME for android. I want to get the activity or textview control information while using my IME program. Like Hwnd property in win32 API or sender property of focused control in .Net . ...
0
votes
0answers
29 views
AutoCompleteTextView don't show dropdown when I come back to this activity after go to another activity
I use a adapter to fill the AutoCompleteTextView. At first,everything goes fine.The AutoCompleteTextView works fine.Then I want to go to another activity to do some work.But when I come back,the ...
-1
votes
0answers
13 views
Android - Cant get Longitude/Lattitude values [duplicate]
I'm working on a simple location based app. While initializing, i have this code in onCreate method,
Long.setText(Double.toString(new Location(LocationManager.GPS_PROVIDER).getLongitude()));
This ...
0
votes
0answers
29 views
Android: Generate input event from a activity
Is there a method to generate an input event from inside an Android activity?
0
votes
1answer
17 views
Activity sometimes doesn't find a Service by using ActivityManager
I'm developing a very simple android app for audio streaming. From the Activity I start and stop a Service that has to manage a MediaPlayer and every time I open the main activity I check if the ...
1
vote
1answer
29 views
android mainactivity and service flow
I have a mainactivity and a service.
The mainactivity prepare data to the service.
After the service consumed the data, it broadcasts a request to mainactivity, mainactivity prepare some new data and ...
0
votes
1answer
17 views
Android Service Stops When App Is Closed
I am starting a service from my main Android activity as follows:
final Context context = base.getApplicationContext();
final Intent intent = new Intent(context, MyService.class);
...
1
vote
0answers
40 views
How can I start activity from receiver as a single new activity?
I am writing an app which need to show an activity over the lock screen when the device is locked.
I have another question to ask for the way to detect if the device is locked or the lock timeout of ...
0
votes
0answers
11 views
Update ActionItem after configuration change
I have a Refresh ActionItem displayed in an Activity and inside that activity there exist a Fragment that uses loaders to load some data from the servers . Now when the user press the refresh button I ...
0
votes
2answers
26 views
Calling a method when another activity finishes
I am using a library that presents an Activity on top of another Activity. I am not working with Bundles or onCreate().
So...Activity A is running in the background and Activity B is running in the ...
0
votes
3answers
53 views
Android Button Does Not Work
Okay so I am making a application just for fun that has a random number pop up on the screen. If you tap the button with the same number as the random number you get a point, and if you tap the button ...
-4
votes
0answers
18 views
stop a AsyncTask to end an activity [HELP] [duplicate]
I have a so called AsyncTask same.
I want to change AsyncTask stop activity.
How I can do?
sorry for my English.
Thank you.
0
votes
1answer
14 views
Activity flow issues on a multi-step wizard
I have a 5-step informational wizard with back and next buttons, each step is an activity. The problem is when a user taps the back button on the activity (not the back button of the phone) then taps ...
0
votes
3answers
61 views
Error by starting FragmentActivity
I want to change my project from Activity to FragmentActivity. The first step was to create the fragment:
public class Frag1 extends Fragment {
public View onCreateView(LayoutInflater inflater, ...
0
votes
2answers
33 views
lauching different activities depending on a value
I'm trying to start a new activity depending of the value of a parameter when the user clicks the next button
<Button
android:id="@+id/next"
android:layout_width="fill_parent"
...
0
votes
0answers
19 views
service android cannot pass between activities
Work flow of my project:
HomeActivity.java -> startService
HomeActivity.java -> SigInActivity -> It's ok.
SignInActivity.java -> ProfilePage -> It's NOT ok.
I have a problem with ...
0
votes
2answers
36 views
finish() not called properly
i have the following activity:
public class MyActivity extends Activity {
String myString;
@Override
protected void onCreate(Bundle bundle) {
...
0
votes
2answers
28 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
1answer
19 views
Is there anyway to change current Activity's intent flag in android? Like making it available in Stack History or Not
Assume that I have 4 Activities (A,B,C,D)
AppStart -> A -> B -> C -> D
I have a situation that i need to remove C if something invalidates the necessity of C.
(something invalidates: "For ...
0
votes
2answers
41 views
Changing activities prevents ImageButton setImageResource from working
I have a main activity that changes the image on the ImageButton on every click.
public class MainActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
...
0
votes
1answer
31 views
Two activity cannot switch
In the 'MainActivity', I create a function about when I shake the device, it will go to the 'CompassActivity'. And it works. And I want to shake it again and want to back to 'MainActivity', but it ...
1
vote
3answers
50 views
Android - start the same activity after starting the app
My app consists of 2 activities:
<activity
android:name="com.domain.android.MainActivity"
android:label="@string/app_name" >
<intent-filter>
...
0
votes
1answer
40 views
Activity sliding from bottom to top but background activity should not moved
I am trying to slide an Activity from Bottom to Top which I am able to do.
But while sliding from bottom to top my background activity is also sliding to bottom.
I want to keep background activity to ...
1
vote
0answers
14 views
Searching through a list and display results with Search Interface
I am trying to implement a search feature in my app where there is a list of people and the user can search for a specific person. I am having trouble implementing this idea. I am assuming I will be ...
0
votes
2answers
25 views
Android Datepicker - How to pass date from activity to fragment
All documentation & example seems to be related to "How to get the date selected from the datepicker dialog back in the activity". And almost all of them sets the current date as default date in ...
0
votes
1answer
28 views
Pause an Android activity when a Dialog is shown
I have a question about activity and dialog interaction. In my Android application I have a page that allow the user to scan a QRCode, and when a valid QRCode is scanned the application will open a ...
0
votes
0answers
16 views
removing dialog-fragment when activity is paused
I have universal AsyncTask, that adds DialogFragment to currentActivity when starts and removes it when it's done. It works good, but when my activity is in background when task finishes, it crashes ...
1
vote
1answer
34 views
Android SQLite: Error creating second table in second Activity
I'm facing the current problem:
I have an application with a first Activity MainActivity and a second Activity called SecondActivity.
Now, in both of these I need a separate table:
This is my ...
1
vote
1answer
25 views
java.lang.RuntimeException: Unable to resume activity {packagename.classname}:
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 ...
1
vote
4answers
85 views
Android FATAL EXCEPTION MAIN: java.lang.RuntimeException: Unable to start activity ComponentInfo
I am nubie at programming android and I know here on fourm is a lot of pages discrabing solution for my problem, but now I lose 2 days in still don't get the solution. Please help me!
First of all my ...
0
votes
0answers
11 views
How to catch quit notification of an andorid app
i am not familiar with android app. In ios , there's a notification will be raised when the application is about to exit. Developers can catch the notification and save data and do anything they ...
0
votes
2answers
42 views
Activity stops when call comes
I am developing an application in which My idea is when someone installs the application the user will get a call from a number which is generated randomly, then the application will check if the user ...




