[android-developers] Android Back Button Handling Issue

2011-12-30 Thread RobinDroid
My App starts with a splash screen loading background data from remote server. After completion of data load, An Activity(say B) launched. This activity B (A photo Gallery of different Animals), when pressed back launches SplashScreen, so inorder to solve this, i prompt user if it really wants to e

[android-developers] Efficeint Handling of Multipart SMS or Long SMS in Android

2011-11-24 Thread RobinDroid
I have a few questions on Android SMSManager. 1. How do I send long SMS, say more than 160 characters. My application send SMS as an email when there is no wifi/data connection. The SMS as email is retrieved by the server and the server sent a msg: "Your email has been recieved". How do I show thi

[android-developers] Re: i have problem about listview adding can any one help me?

2011-08-31 Thread RobinDroid
Where is the problem? On Aug 31, 2:09 pm, Jhew SAN wrote: > package com.cityweather; > > import java.io.FileInputStream; > import java.io.FileOutputStream; > import java.io.IOException; > import java.io.InputStreamReader; > import java.io.OutputStreamWriter; > import java.net.MalformedURLExceptio

[android-developers] ListView Data disappears

2011-08-31 Thread RobinDroid
Dear All, I have a listview with checkbox. I have a menu which makes the list hide/unhide the checkbox. When i hit my menu 3 to 4 times with hide and unhide the checkbox, the data in listview disappears? Why is this happening? -- You received this message because you are subscribed to the Googl

[android-developers] Re: Unable to Uncheck CheckBox on ListView

2011-08-26 Thread RobinDroid
hat code, it's impossible to know to what's > wrong, but initialized checkedItems in getView() looks very incorrect > to me. > > On Aug 26, 3:48 pm, RobinDroid wrote: > > > > > > > > > Dear All, > > I have problem on unchecking the checkbox whe

[android-developers] Unable to Uncheck CheckBox on ListView

2011-08-26 Thread RobinDroid
Dear All, I have problem on unchecking the checkbox when a menu is fired.? I am using a baseAdapter where i have a getView() method as such: --

[android-developers] Re: TabHost with ListViews - Accessing elements

2011-08-02 Thread RobinDroid
Is that really necessary because your tabhost has view content and on that content you have ure listview? So why not use your tabhost content view for that particular tab. On Aug 3, 4:13 am, Giorgio Torres wrote: > Hi, I have a TabHost that hosts 4 ListViews with some elements. > > I would like t

[android-developers] Re: Issues with CheckBox setting checBox ID in a ListView

2011-08-02 Thread RobinDroid
Any hints on this? On Aug 2, 6:07 pm, RobinDroid wrote: > Actually my listview is as: > After refresh is clicked and the checkbox is invisible > - > Fruit Name: Apple > Type: Sweet Apple > - > Fruit Name: Mang

[android-developers] Re: Issues with CheckBox setting checBox ID in a ListView

2011-08-02 Thread RobinDroid
Actually my listview is as: After refresh is clicked and the checkbox is invisible - Fruit Name: Apple Type: Sweet Apple - Fruit Name: Mango Type: Sweet Mango EDIT | Refresh --

[android-developers] Re: Should i use multiple BroadCastReciever?

2011-08-02 Thread RobinDroid
I solved it. Thank you for your replies. On Aug 2, 3:20 pm, Robinns wrote: > Dear, > > I am pasting my code here. > > --- > public class Inbox extends ActivityGroup { > private ArrayList inboxEmails = new > ArrayList(); >  private Li

[android-developers] Issues with CheckBox setting checBox ID in a ListView

2011-08-02 Thread RobinDroid
Dear All, I have a ListView in one of my Tab: Initially the Tab has empty ListView. In the Tab there is a menu with menu item such as EDIT,REFRESH. Firstly, Refresh is clicked and an sms is sent and via broadcastreciever i recieved the sms in the format: 1\nApple\ Sweet Apple\n2\nMango\nSweet Mang

[android-developers] Should i use multiple BroadCastReciever?

2011-08-01 Thread RobinDroid
I have to sent sms to server using certain keywords: For that reason i have used BroadCastReciever. In my app, there are around 8 keywords(such as A,B,C,D,E,F etc) and for each keyword i think i shouldn't use 8 BroadcastReciever. I implemented one broadcastreciever for a keyword say A. and popula

[android-developers] Re: Multiple Activities within a Tab

2011-07-30 Thread RobinDroid
Thank you so much for the link. I will read the above link and if i have any queries please be there to help me. I actually follow your coding structure from the github On Jul 31, 12:24 am, Mark Murphy wrote: > On Sat, Jul 30, 2011 at 3:17 PM, RobinDroid wrote: > > Can you

[android-developers] Re: Multiple Activities within a Tab

2011-07-30 Thread RobinDroid
I have been following your examples from tthe github.com on creating tabApplication On Jul 31, 12:17 am, RobinDroid wrote: > Can you just give me link or a small demo ? > > i have so far come up to > this:http://stackoverflow.com/questions/6869474/checkbox-id-set-manually-n... >

[android-developers] Re: Multiple Activities within a Tab

2011-07-30 Thread RobinDroid
ox_menu_edit, menu); return true; } } On Jul 31, 12:10 am, Mark Murphy wrote: > On Sat, Jul 30, 2011 at 3:07 PM, RobinDroid wrote: > > I wish to have tabs for my application. > > If i dont use ActivityGroup, how can i have multiples view in the same >

[android-developers] Re: Multiple Activities within a Tab

2011-07-30 Thread RobinDroid
PM, RobinDroid wrote: > > I am currently developing a tab based application to learn Android. > > I have 2 tabs: TAB1 and TAB2. > > > I created tabs: thats fine: > > TAB1: is used to browser some files, dats ok as well. > > > The problem is with tab2. > > TAB2

[android-developers] Multiple Activities within a Tab

2011-07-30 Thread RobinDroid
Dear All, I am currently developing a tab based application to learn Android. I have 2 tabs: TAB1 and TAB2. I created tabs: thats fine: TAB1: is used to browser some files, dats ok as well. The problem is with tab2. TAB2 extends ActivityGroup: Why because i will has multiple activities within it