Android :: StartActivity() In A Subclass Of Dialog?

Nov 24, 2010

I have one subclass which extends Dialog class, it seems I can not use startActivity() function to start a new Activity in this subclass which extends Dialog class, how to resolve it?

How to start a new Activity in a Dialog subclass? (In my customized dialog subclass, I have one button, when pressed, I would like to have a new Activity start).

Android :: startActivity() in a subclass of Dialog?


Android :: StartActivity From Subclass?

May 15, 2009

I have a Activity and I have a class which extends this Activity. In this subclass I call:

startActivity(new Intent(this, CameraView.class))

Which should start the "CameraView" Activity. However, I always get this error:

CODE:...........

If it makes any difference the subclass creates a ListView and when a row of the ListView is clicked it calls startActivity();

View 5 Replies View Related

Android :: Subclass Of ArrayAdapter Not Working

Nov 4, 2009

I have subclassed ArrayAdapter to set the color of text to RED if the string does not contain 100%, this has been added to a ListView. The problem is that some of the rows show as red when they contain 100%.

CODE:.....................

View 7 Replies View Related

Android :: ListActivity Subclass - OnListItemClick Never Called?

Aug 1, 2010

I don't think this problem is caused from my ListActivity subclass. I think it has something to do with with my BaseAdapter subclass:

package com.mohit.gtodo;
import com.mohit.gtodo.database.TasksDBAdapter;
import android.content.Context;
import android.database.Cursor;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.CursorAdapter;
import android.widget.TextView;............................

View 1 Replies View Related

Android :: App.Application Subclass - OnTerminate Is Not Being Called

Mar 19, 2010

From the documentation for android.app.Application:

"Base class for those who need to maintain global application state"

I am using my own subclass to maintain an object that I'm using to query a server. Also from the documentation:

"onTerminate() Called when the application is stopping."

However, onTerminate() in my class is never called. I press the back button while viewing my main activity, and everything seems to shut down. My main Activity's onDestroy() method is called and isFinishing() returns true, but my android.app.Application's onTerminate() method is never called.

View 1 Replies View Related

Android :: Subclass Of View Constructor Not Being Called

Jun 6, 2010

I'm subclassing Android's view class, but whenever I make an instance of the view from another class, the constructor never gets called (or so it seems). I've implemented both public myclass (Context context) and public myclass (Context context, AttributeSet, attrs) I can't figure out what I'm doing wrong. Do I need to override onDraw and onMeasure?

View 1 Replies View Related

Android :: Application Subclass Constantly Generates Forceclose

Nov 16, 2010

I've found a example on this site on how to make a subclass of the application for android.

I've created this code

package mensand.test;
class TestApp extends android.app.Application { }

Added this line to the manifest

android:name="mensand.test.TestApp"

And when i run the app it's starts with a force close message.

When i remove the line from the manifest all runs ok

View 2 Replies View Related

Android :: Multiple Intents In A ListView Populated Via Subclass

Jun 2, 2010

I have a ListActivity which is being filled via an internal class "OrderAdapter" - while the list is being populated I set various OnClickListeners on the TextView elements which should open the same view with different parameter values per line. My problem I have is that no matter which entry in the list I click I will always get to a view with the same parameter ID (it's always the ID of the last line in the list) - even though the output of the ID varies if I output it to the TextView.

Here is the code of the internal class which populates the list in the ListActivity:

CODE:.............

Any ideas why it always opens the view with the same ID even though the TextView "tvCheatTitle" displays a different value in every line?

View 4 Replies View Related

Android :: How To Access Protected Fields From View Subclass?

Apr 19, 2010

I'm implementing custom widget exdending a View class. But I've found that View's protected field (e.g. mLeft) is not accessible from subClass

View 2 Replies View Related

Android :: Test OnLowMemory Function Of Application Subclass?

Jun 11, 2010

I have put some instructions in onLowMemory() callback and want to test the same. Is there a "direct" way to test onLowMemory function of the application subclass?

Or will I have to just overload the phone by starting many apps and doing memory intensive tasks?

View 2 Replies View Related

Android :: Manually Set Preferences Being Overwritten By A Subclass Of PreferenceActivity

Mar 16, 2010

I am having a problem with an application I am in the middle of writing which is causing me some serious headaches.

The situation is this:

The application allows the user to configure several different kinds of information in several activities.

One of the activities, which is a subclass of Activity, takes data from the user and stores it in a shared preferences instance that I create manually and edit in code. This activity requires a complex screen layout that I do not believe would work well with a PreferenceActivity, hence me rolling my own in this case.

Another one of the activities, which is a subclass of PreferenceActivity, is a straight forward list of preferences, each with a list options - standard stuff.

I am finding that any data that I store from the first activity, my bespoke preference screen which manually adds the data using a StoredPreferences.Editor instance is overwritten once the user selects an option in my activity that extends PreferenceActivity.

View 4 Replies View Related

Android :: ClassCastException When Casting Custom View Subclass

May 23, 2010

I've run into an early problem with developing for android. I've made my own custom View (which works well). In the beginning i just added it to the layout programmatically, but i figured i could try putting it into the XML layout instead (for consistency).

So what i got is this:

main.xml:

CODE:..........

(Theres obviously more, but you get the point)

Now, this is the stacktrace:

CODE:...........

Why cant i cast my custom view? I need it to be that type since it has a few extra methods in it that i want to access. Should i restructure it and have another class handle the logic, and then just having the view being a view? I'd really like this to work though.

View 2 Replies View Related

Android :: Calling Superclass Method In Subclass Constructor

Apr 30, 2010

I get a NullPointerException calling a Superclass Method in Subclass Inner Class Constructor... What's the Deal?

In my application's main class (subclass of Application), I have a public inner class that simply contains 3 public string objects. In the parent class I declare an object of that inner class.

CODE:...................

After I instantiate the object in the constructor, I get a runtime error when I try to assign a value in the inner class with a superclass method.

Can you not call superclass methods in the subclass constructor?

View 3 Replies View Related

Android :: Prevent Dialog Closed / Remain Dialog When Button Is Clicked

Apr 12, 2010

I have a dialog with edittext for input. when i click yes button on dialog, it will validate the input and then close dialog. However, if the input is wrong, i want to remain in the same dialog. every time no matter what input it is, the dialog always automatically close when i click button. How can i disable this. By the way, i use PositiveButton and NegativeButton for the button on dialog

View 2 Replies View Related

Android :: Static Variables Of An ApplicationContext Subclass Left Untouched When The Process Is Killed?

Sep 7, 2010

Do static variables of an ApplicationContext subclass left untouched when the process is killed?

View 4 Replies View Related

Android :: How To Repeat Login Dialog And Progress Dialog?

Jan 25, 2010

I am having a problem about repeating Login dialog (an AlertDialog) and progress dialog, coordinating with http thread. I suppose repetitive Login dialog (if fail, continue) handling should be common and straightforward. I guess my approach must be wrong somewhere. I already spent 2 days on this and am desperate. So please help. User starts the app, the main activity starts.Show a login dialog (generated by the main thread, i.e. from on Create. The main thread then starts a wait_thread, which will wait for http to return data and check the data and decide what to do.After user input username/password and press login, a progress dialog starts.The progress dialog starts an http_thread to talk to the server and get replies. Once done, it will notify the waiting thread.If the user type in the right username password first time, the code works fine.But it always fail for 2nd time Login, i.e. When first login fail(wrong username/ password),the wait_thread will generate 2nd Login dialog to let user repeat the login process. But after user hit the login on this 2nd Login dialog, the system always crashes.

View 3 Replies View Related

Android :: Custom Dialog By Extends Dialog Or AlertDialog

Dec 29, 2009

I want to make a custom Dialog,because i donot like it"s style,i want get a rounded rectangle rather than rectangle . i know to implement it by theme in Manifest.xml . for example :the code
at activity write:

CODE:............

My question is how to implement this Similar result by extends dialog or alertDialog.

View 1 Replies View Related

Android :: ListView Opening Dialog (or Alert Dialog)

Aug 13, 2010

I'm trying to get my list view to open up an alert dialog to display information when a person clicks on a selection. I have been trying several different things on the Google Developers website that have to do with this but have yet to come up with a result. Here is my code. package table.periodic;

import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.content.Context; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.ListView; import android.widget.AdapterView.OnItemClickListener;...........

View 1 Replies View Related

Android :: How Do I Do A StartActivity In BroadcastReceiver?

Apr 7, 2009

My use case is to launch one of settings app screen when I receive a certain event in idle state. For which, I added my new intent to PhoneAppBroadcastReceiver() in PhoneApp.java (looks like this receiver handles the misc intents) But when i call startActivity(), The phone seems to go into a panic ex. startActivity(new Intent(this, NetworkSetting.class)); My questions are is this the right approach to go about ? If so 1. How can I launch the activity inside of broadcastReceiver? secondly 2. How do i verify if the activity i want to start is already started?Can the NEW_TASK_LAUNCH be used to verify this ,

View 2 Replies View Related

Android :: StartActivity In Another Package

Nov 23, 2009

I have splitted my Android project in 2 packages, lets say: test.current and test.another. From an activity in test.current I want to start an activity in the package test.another

View 6 Replies View Related

Android :: Why Should I Use StartActivity In A Service?

Jul 15, 2010

Why should I use startActivity() in a Service? If I need an Activity a have to call an activity and if I need a "delayed activity" I have to use the notification. So, why should I use startActivity()?

View 1 Replies View Related

Android :: Action Before StartActivity

Jul 22, 2010

I'm new in Android development and I've a problem when I create my new activity.I want to use my activity before start it. For example, But, my "menu" and "MyActivity.class" aren't the same instance.

View 2 Replies View Related

Android :: StartActivity And ActivityNotFoundException

Jun 29, 2009

According to the doc, if the intent in startActivity(intent) is not found, there will be an exception raised. Therefore I use a try/catch block. However, even if I use a random string as the intent, the promised exception does not occur.Instead I see a dialog that says: "No application can perform this function". I also get the same dialog if the intent is valid (picked up by an app) but apparently doesn't want to act when the extras are not what the app expects (e.g. my earlier question about Intent.ACTION_SEND and mime types). I am using the 1.5_r2 SDK on an AVD running 1.5, with the app running at version 1.1 (sdk=2). Is this a doc error, a bug or am I misunderstanding something? Can I simply delete the try/catch block?

View 3 Replies View Related

Android :: Creating An Alert Dialog In Dialog

Apr 14, 2010

how to create an Alert dialog in a dialog? is it possible to create? My requirement is to show mulitple dialogs simultaneously. I tried creating with the following code snippet onClick of a Button in the first Dialog and got an "BadToken" exception from WindowManager: "Unable to add window -- token null is not for an application"

AlertDialog.Builder builder = new AlertDialog.Builder(getContext()); builder.setTitle("Test Title"); builder.setOnCancelListener(new Dialog.OnCancelListener() { public void onCancel(DialogInterface dialog) { dismiss(); } });

View 4 Replies View Related

Android :: Showing Dialog After Another Dialog Hangs

Sep 2, 2010

I have a really weird problem, which I am unable to debug so far. thing is. my app needs to download something to work. So in the beginning of the onCreate() method, I check if that something is already downloaded. If not, I pop a dialog up asking the user to download it.My dialog is shown and I am clicking, so aManager.install() is called. I am passing the context because that aManager.install() pops up a ProgressDialog to show downloading progress and spawns a new thread in which everything is downloaded. So obviously before creating my dialog I make a Handler to receive the response from that aManager.install(). And the response MAY vary, because for example the internet connection isn't available (Exception raised and catched and listener called with different code).Now, when that happens (Exception) I would like to call another dialog saying "something went wrong, would you like to retry?" so another call to showDialog(DIALOG_REINSTALL) (this time with another code).thing is the showDialog() gets called (I can verify this by logging) but the dialogs doesn't show up. Instead my application JUST HANGS Does someone have a clue why it's doing this? No exception raised, absolutely nothing from logcat, I can't tell WHERE it's hanging...just see that the method is called and the dialog should be displayed.

View 2 Replies View Related

Android :: Calling StartActivity From Outside Of An Activity

Dec 7, 2009

I have a TabActivity subclass that attempts to start a new activity via a menu item selection in onOptionsItemSelected.I am receiving the following exception which eludes me at the moment.I'm not sure why it thinks I am *not* in an activity!

View 2 Replies View Related

Android :: How I Call StartActivity In BradocastReceiver?

Apr 7, 2009

I'd like to launch one of settings app screen when I received a certain event in idle state. For that, I added my new intent to PhoneAppBroadcastReceiver() in PhoneApp.java (because it seems this receiver handles the misc intents) But if I called startActivity(), seems phone goes to panic. ex. startActivity(new Intent(this, NetworkSetting.class));

1. How can I launch the activity inside of bradcastreceiver?

2. If the activity which I want to start is already started, how can I check it? I read can use NEW_TASK_LAUNCH but don't know how to use it. If you have a sample code, could you post it?

View 3 Replies View Related

Android :: What Is Difference Between StartActivity And StartSubActivity?

Mar 3, 2009

what is the scenario that makes me to pick between startActivity and startSubActivity

View 2 Replies View Related

Android :: Way To Pass Bundle On StartActivity?

Apr 20, 2009

What's the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties?

View 2 Replies View Related

Android :: Activity Events On StartActivity

Sep 28, 2010

Is there any event triggered on an activity when I call startActivity("activity_id", myIntent);

If the Activity exists already. I pass a parameter to the activity via i.putExtra("someID", someSerializableObject ); and would like to call a method to refresh a WebView. Right now, the call on startActivity brings the activity in the foreground but the webview does not display what i want.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved