Android :: Nesting An ActivityGroup As AtTab Content

Oct 11, 2009

I have a tab bar and within one tab want to implement an activity flow (without leaving the tab screen). I tried to get this up with an ActivityGroup and it partly works, but certain commands like the onCreateOptionsMenu must be dispatched to the ActivityGroup child activity manually.

The main issue is that showDialog() in my child activity of the ActivityGroup fails with the following exception:

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

How I can get the child activities fully working? I expect this to happen with more of the built-in activity methods and there is not much documentation for the ActivityGroup.

Android :: Nesting an ActivityGroup as atTab content


Android :: Designing Nesting LinearLayout?

Mar 3, 2010

I am facing a problem in designing LinearLayout. What I want is the Textbox at the top and button bar at the bottom. But the top Textbox just don't appear. The xml file looks like this:........................

View 4 Replies View Related

Android :: Nesting Phone APKs To Open One With Another?

Oct 13, 2010

Is there any way to nest APKs so that you can open one with another?

I am looking to wrap a bunch of APKs with some control options that can fire an APK when selected. Even if i can start with one opening one other it would be a start...

I have thus far tried the dex loader to no avail... Keep getting a load error in the log dump.

Can anyone suggest a way to do this?

View 1 Replies View Related

Android :: How To Use ActivityGroup

May 12, 2009

About ActivityGroup or give me some hints on how to use it? I looked at the documentation but I wasn't able to understand how it works...

View 4 Replies View Related

Android :: Add MapActivity To ActivityGroup

Mar 3, 2009

I want to add a MapActivity in an ActivtyGroup. As only single level inheritance is supported, my class can either extend from either MapActivity or ActivityGroup. As far as I know MapActivity is not a part of ActivityGroup. I want an activity to extend MapActivty as well be a part of an ActivityGroup.

View 2 Replies View Related

Android :: ActivityGroup And LocalActivityManager

Mar 24, 2010

I need a to create a layout that holds to other layouts. each one of the layout should be populated by a different activity.

I've done some research and came across the fact that I need to implement an ActivityGroup and use it's LocalActivityManager. problem is that I don't understand the View hierarchy in such a situation. a naive attempt to find the view of the parent window (simple findViewById) fails (returns NULL).

I can't find any examples on the web. have anyone done it before?

View 6 Replies View Related

Android :: ActivityGroup And SearchDialog

Aug 19, 2010

So I have a default searchable Activity in my app, and if I press the search button in simples activities it works. But when I'm in a tab where the content is an ActivityGroup, and not an Activity, the app crashes.

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

Even if I add this code in my activityGroup, I'm still crashing :

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

View 1 Replies View Related

Android :: GetCurrentActivity() And ActivityGroup

Aug 23, 2010

I am using an ActivityGroup and when I finish a top-level Activity (e.g. with destroyActivity method) and display one from history, the getCurrentActivity method returns the last Activity - the finished one. I need to access currently displayed activity, which is actually shown.

View 1 Replies View Related

Android :: ActivityGroup Menu ?

Jul 1, 2010

I have one problem using ActivityGroup. I have two activities inside an ActivityGroup and both of them use a menu (overriding the onCreateOptionMenu and onOptionsItemSelected).

Well, the problem is that the second activity in the group doesn't show the menu when I press the menu Key. The first activity works fine showing the menu.

I have this code in child activity:

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

View 3 Replies View Related

Android :: Shadow On Top Of A Layout On ActivityGroup / Fix It?

Jul 16, 2010

I'm trying to give my first steps on working with ActivityGroups. To be more specific, I have a parent activity with a layout containing several buttons, and another layout below them in order to add other activities' layouts by means of the "addView()" method. Well, everything works fine in functionality terms; but I'm experiencing a weird behavior inside the layout where other activities are kind of loaded into. A black line along the top border of the layout plus a slight shadow do appear when I run the application on the emulator. I have tried to play changing the paddings, margins, etc. with no success.

Has any of you experienced such weird behavior?

View 2 Replies View Related

Android :: Embedded ActivityGroup And Dialog Box

Apr 14, 2009

I'm trying to run an activityGroup embedded inside another activityGroup. (Example : an activityGroup inside a tabActivity)

This seems to display properly but throw an exception when i'm trying to display a modal box like an alertDialog.

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

If childActivity1 or 2 try to display a dialogBox i'm getting this exception :

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

View 2 Replies View Related

Android :: ActivityGroup And Subactivities Lifetime

Nov 23, 2009

I'm extending ActivityGroup class and implemented a custom tabHost and widgets for my app. Can someone shed a light on how are the Activities fife-time inside an ActivityGroup?.

Im getting a weird behavior when using the following code to send a new intent to the current sub-activity, then change tab, and getting back to original tab. (TAB1 -> TAB2 -> TAB1)

CODE:.......

What i see from debug..

onSaveInstanceState() is called on TAB1, then TAB2 is current subActivity, but when going back to TAB1 onCreate() is called.

onCreate() is not called with the same test without using the onNewIntent() described above.

View 8 Replies View Related

Android :: SubMenu - Dialogs And ActivityGroup

May 31, 2009

I have 6 options to put in options Menu, but 3 of them are not so important and i want to hide them in submenu. All of my Activities are started from one ActivityGroup which creates Menu on MENU button press. Problem is that when I open SubMenu or Dialog (which is created and displayed by ActivityGroup) my current foreground activity makes onPause, onStop and onDestroy, and when I close this submenu (using "back" key) or dialog (by "ok" button for ex.) I don't have any response (onCreate, onResume) from any of my activities registered in LocalActivityManager.

View 3 Replies View Related

Android :: OnActivityResult Is Not Working When Used In ActivityGroup

Feb 22, 2010

I have a Activitygroup and some activities are part of it.

lets say Activitygroup is DetailsGroup which has a activity by name DetailsActivity.

On certail events DetailsActivity launches another activity ExtraActivity by calling startActivityForResult(intent, 2);

The extraActivity is launched it does its work and before calling finish() of it I am calling setResult(RESULT_OK,mintent);

By doing this I was expecting that the DetailsActivity's onActivityResult() would be called, but instead DetailsGroup activities' onActivityResult() is getting called.

Any idea what changes are required to get DetailsActivity's onActivityResult() called in above scenario?

View 2 Replies View Related

Android :: OnActivityResult Never Called On ActivityGroup

Jul 21, 2010

I'll be brief. I have an application with the following Activities Schema:

A (ActivityGroup) | |__

B (Activity Group) | | | |__

C (Activity) | |__ ... (Other Activities) | |__

D (ListActivity) | | | |__

ListView with a custom adapter with two buttons per row

All the Activities shown on the "diagram" are displayed and visible in real time while the application is being executed.

I'm pushing new list elements from C to the ListView in D. And by clicking each row's buttons I'm trying to edit the data of the row by means of a dialog. The problem is when, in the dialog activity, I perform the setResult() and finish(); the D's onActivityResult() is never called, and I do not know why.

View 3 Replies View Related

Android :: ActivityGroup - Get Reference Of The LocalActivityManager

Aug 20, 2009

I have a tab with an activitygroup as the intent of tab1.

My code of the activity(group):

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

View 2 Replies View Related

Android :: Nesting Table Layout In Linear Layout

Mar 15, 2009

I have defined the layout which you can see at the end of this message. I do not understand, why the button is not displayed. If I move the button to the top that the rendering works.

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

View 2 Replies View Related

Android :: ActivityGroup Not Handling Back Key For ListActivity

Sep 29, 2010

I am using an ActivityGroup to spawn multiple activities and switch views from within the same tab in a TabActivity.

When I press the back key this method is called inside my ActivityGroup

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

This method allows me to keep a stack of my activities and go back to the previous one when the back key is pressed.

This is working well on all my nested activities, except on a ListActivity where a press on the back key will simply exit the application.

View 1 Replies View Related

Android :: Removing/adding Activities From/to An ActivityGroup

May 18, 2009

I have an ActivityGroup containing three embedded Activities (A, B and C). Sometimes I need to "destroy" A and B to start another one, D, and when D is finished, A and B are re-created. Is it possible? If so, how can I do it?

View 5 Replies View Related

Android :: ActivityGroup Start 3rd Party Activity

Mar 30, 2010

I'm trying to make an ActivityGroup which has it's own interface, which should be persistent between Activities.

I have it working for my own Activities. But when I try to launch a 3rd party activity (from it's Intent{action="ACTION_HOME", category="CATEGORY_LAUNCHER"}) I get a java.lang.SecurityException because the Activity I want to start does not have the same UID as the calling Activity. Does anyone knows how to cirumvent this?

View 1 Replies View Related

Android :: ActivityGroup - Embedded Activity Search Window

May 27, 2009

I have an ActivityGroup with an embedded TabActivity and another simple Activity.

The TabActivity has three tabs, each one with a ListActivity.

When I try to start a search from a list (calling onSearchRequested()), I get a WindowManager$BadTokenException.

I've tried requesting focus in the list, but the same error occurred.

View 4 Replies View Related

Android :: Switching Content Providers For Same Content URI

Aug 12, 2009

This may seem like a stupid question but I need to be sure. I was wondering if it was possible to pro-grammatically change the Content Provider used when making a query given a Content URI. The reason being I need to know if it's possible to force the Calendar/Contacts applications to read from a different database via a different Content Provider temporarily while my application is running, so that I can reuse those applications to display my own data. Since the Content URI s are hard coded in each of these applications the only way it might be possible is if we could somehow temporarily change the Content Provider used for a given URI. I know this probably isn't possible, I just need to show it isn't. Could someone confirm this can't be done?

View 2 Replies View Related

Android :: Android - Nesting Relative Layout Inside Linear Layout

Oct 15, 2010

I have the following code in my layout.xml.

code:............

In the eclipse Plugin layout creator, the EditText and button are shown properly. (see the below screenshot)

But on the device and emulator, the button is not hidden. (see the below screenshot)

why the button is getting hidden in the device?

View 3 Replies View Related

Android : Content Provider - No Link Between Content Provider And Its CONTENT_URI Declared In Another Class

Mar 1, 2010

I am having a hard time understanding content providers. In the notepad example and others, the content provider never even declares its CONTENT_URI anywhere inside itself, yet the docs say to publicly declare this. It's declared in a different class. So when an activity queries a content provider with a CONTENT_URI, how does Android know which one I want. I see no link between a content provider and its CONTENT_URI declared in another class.

I also don't how to think about intents and content providers. I know that you don't call an intent on a content provider. But an activity queries a content provider without an intent, and an activity has a mimetype attribute in the manifest that would seem to tie it to a content provider.

View 2 Replies View Related

Android :: Custom Content Provider Like Contact Content Provider?

Mar 11, 2010

how can i create a custom content provider like contact content provider? i know how to create custom content providers but i want to integarte to device such a way that it canbe accessed by all application installed in that device.

View 3 Replies View Related

How To Update Content Of Edittext On Third Row After Edit Content Of Edittext In First Row

Jun 20, 2012

i have a listview (i use a custom adapter) with 10 rows and each row has edittext how will i update the content of edittext on the third row after i edit the content of edittext in the first row.

View 1 Replies View Related

Android :: How To See Content Of Database On G1?

Jun 22, 2009

i hook up my G1 to my laptop and open a 'adb shell'. But as I execute the command 'cd /data/data', I get an error 'opendir failed, Permission denied' adb devices List of devices attached HT853GZ21556 device .I tried to cd the the right directory and then do 'sqlite3 <mydatabase>.db'.How can i dump the content of the database on a real device?

View 2 Replies View Related

Android :: How To Use SMS Content Provider?

Dec 29, 2009

I'd like to be able to read the system's SMS content provider. Basically I wanted to make an SMS messaging app, but it would only be useful if I could see past threads etc.It seems like there's a content provider for this, but I can't find documentation for it - anyone know where that is?

View 6 Replies View Related

Android :: Content Provider Without SQL

Jun 4, 2010

my android application is handling a large database of bus passage time and we would like to allow others application to be able to display certains bus passage time. We would like to use a content provider to do that. Most example seems to be about using an SQL database, but we use some custom text file. I was wondering what would be the best way to do that. I was thinking I could use a Content Provider and implement the Cursor interface on a custom object that I would manually fill with my text data. Would this be possible ? Anyone have a better idea (excluding changing to SQL lite of course)?

View 1 Replies View Related

Android :: How To Get Content Of Web Page?

Sep 29, 2010

A web page:
- 5 first seconds. It shows an advertisement picture.
- After, its show main page.
If I get content by common way. It only gets page content with advertisement. How to load main page content?

View 1 Replies View Related







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