Re: [android-developers] Re: Fragment Transactions

2012-10-01 Thread Apurva Goyal
Also if I add the fragment then the backstack logic works well. But then my first fragment is not completely hidden by the second fragment that I add over it. On Mon, Oct 1, 2012 at 1:32 PM, Apurva Goyal wrote: > Thanks Blake. However when I try to replace one fragment with another > usin

Re: [android-developers] Re: Fragment Transactions

2012-10-01 Thread Apurva Goyal
Thanks Blake. However when I try to replace one fragment with another using this code, I am still not able to get backstack stuff working. Here is my new code- private void handleRuralRoutesClick(){ FragmentTransaction xact= getSupportFragmentManager().beginTransaction(); xact.rep

Re: [android-developers] Re: Fragment Transactions

2012-09-29 Thread Apurva Goyal
Thanks Blake. The RouteCategoryFragment is not a splash screen. There is a separate splash screen activity with a button. Clicking that button launches another activity which has the RouteCategoryFragment. Please let me know what I need to do replace fragment and add it to backstack. Thanks Apurv

[android-developers] Fragment Transactions

2012-09-28 Thread Apurva Goyal
Hello, I have a framelayout where I am adding a listfragment and adding it to backstack. If user selects an item in that list, I start a new transaction and replace the last fragment with a new one. But when I press back button, I dont see my first list fragment, rather I see the original splas

[android-developers] Adding fragments to backstack in different transactions

2012-09-26 Thread Apurva Goyal
Hello, I have a framelayout where I am adding a listfragment and adding it to backstack. If user selects an item in that list, I start a new transaction and replace the last fragment with a new one. But when I press back button, I dont see my first list fragment, rather I see the original splas

[android-developers] Re: Replacing fragments in different transactions

2012-09-26 Thread Apurva Goyal
(); FragmentTransaction ft = fm.beginTransaction(); ft.replace(R.id.fragment_content, new CountyListFragment(),COUNTY_TAG); ft.addToBackStack(null); ft.commit(); } On Wednesday, September 26, 2012 11:35:29 AM UTC-4, Apurva Goyal wrote: > > Hello, > > I have a framela

[android-developers] Replacing fragments in different transactions

2012-09-26 Thread Apurva Goyal
Hello, I have a framelayout where I am adding a listfragment and adding it to backstack. If user selects an item in that list, I start a new transaction and replace the last fragment with a new one. But when I press back button, I dont see my first list fragment, rather I see the original splas

Re: [android-developers] Multiple Overlays on Map slowing down pan/zoom

2012-09-15 Thread Apurva Goyal
So basically I should draw all road segments in a single overlay and just change colors in ondraw method? On Saturday, September 15, 2012 3:08:42 AM UTC-4, TreKing wrote: > > On Sat, Sep 15, 2012 at 12:53 AM, Apurva Goyal > > > wrote: > >> There are around 200 road s

[android-developers] Multiple Overlays on Map slowing down pan/zoom

2012-09-14 Thread Apurva Goyal
Hello, I am trying to add multiple road segment data as overlay on the map in my Android application. There are around 200 road segments and each segment has an attribute that decides the color of road segment. I therefore have to add each segment as a separate overlay on map. This has slowed d

[android-developers] 3D Maps for Android

2011-01-07 Thread Apurva Goyal
Hello, I am currently working on an Android application with Map based activity. Its displaying the map fine. However I recently read about the 3D maps being available for Android. How can I incorporate these maps into my app. Thanks Apurva -- You received this message because you are subscrib

[android-developers] Unable to display tiles on MapActivity

2010-12-13 Thread Apurva Goyal
Hello, I have a map activity that I created following the Hello MapView example. But when I try loading the activity, I get only grey tiles and no actual map tiles. In the DDMS I see the "Couldnt get connection factory client" exception. I am using Emulator with Device API version as 8 and using A