[android-developers] Re: Problem with Android Emulator

2011-11-16 Thread Bishan
ok. i fixed the issue. deleted current one and created a new one. :) On Wed, Nov 16, 2011 at 1:16 PM, Bishan tvbis...@gmail.com wrote: When i start the emulator, it show on taskbar. but it is not comes to my pc screen. i tried to get it on my pc screen using task manager by selecting Bring

[android-developers] Problem with Android Emulator

2011-11-15 Thread Bishan
When i start the emulator, it show on taskbar. but it is not comes to my pc screen. i tried to get it on my pc screen using task manager by selecting Bring to Front command. but it is not comes to infront of my screen. how could i fix this issue ? -- You received this message because you are

Re: [android-developers] Swipe gesturing to switch between tabs

2011-11-13 Thread Bishan
thanks srinivas. On 11/11/11, venkata srinivas namburi srinivase...@gmail.com wrote: Hi Bishan, I guess there is sample application using fragments,which walks you through the swipe gesture in tabs( FragmentTabsPager.java). On Fri, Nov 11, 2011 at 3:09 PM, Bishan tvbis...@gmail.com wrote

[android-developers] Swipe gesturing to switch between tabs

2011-11-11 Thread Bishan
How to add swipe gesturing to switch between tabs in android ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Need a help with Android Swipe Action

2011-11-10 Thread Bishan
please see the attachment. I need to add swipe action to my project with HorizontalPager.java file in my attached project. i have tried to do that, unfortunately i'm unable to find a way to do that. please any one help me to implement swipe action with HorizontalPager.java file. -- You

[android-developers] Re: Need a help with Android Swipe Action

2011-11-10 Thread Bishan
ps: actually i need to add swipe action to views with tabs in my example. On Fri, Nov 11, 2011 at 12:55 PM, Bishan tvbis...@gmail.com wrote: please see the attachment. I need to add swipe action to my project with HorizontalPager.java file in my attached project. i have tried to do

[android-developers] Show Details on PopUp Dialog

2011-11-03 Thread Bishan
I need to show data on popup dialog as a list that retrieved from database. how could i do this? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

Re: [android-developers] About Quick Action Dialog

2011-11-03 Thread Bishan
thanx Mark . i'll try this On 11/3/11, Mark Murphy mmur...@commonsware.com wrote: On Wed, Nov 2, 2011 at 10:05 PM, Bishan tvbis...@gmail.com wrote: could you please give me some example about UI model that i can use for this ? AlertDialog. -- Mark Murphy (a Commons Guy) http

[android-developers] About Quick Action Dialog

2011-11-02 Thread Bishan
I have created a Quick Action Dialog after reading article on http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/. Now i'm trying to display data on this Quick Action Dialog which retrieved from sqlite database as a list. how can i do this? how could implement list on Quick

Re: [android-developers] About Quick Action Dialog

2011-11-02 Thread Bishan
of actions to take against something. Please use some other UI model for displaying a list of output. On Wed, Nov 2, 2011 at 6:53 AM, Bishan tvbis...@gmail.com wrote: I have created a Quick Action Dialog after reading article on http://www.londatiga.net/it/how-to-create-quickaction-dialog

Re: [android-developers] Can't download Support Package

2011-11-01 Thread Bishan
Thanx Mark :) On 11/1/11, Mark Murphy mmur...@commonsware.com wrote: On Tue, Nov 1, 2011 at 12:19 AM, Bishan tvbis...@gmail.com wrote: I have followed instructions to Download the Support Package in http://developer.android.com/sdk/compatibility-library.html. but  i can't see Support Package

[android-developers] Using Swipe with TabHost

2011-10-31 Thread Bishan
I have created app with TabHost. i need to add Swipe action to these tabs. how can do this ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] Can't download Support Package

2011-10-31 Thread Bishan
I have followed instructions to Download the Support Package in http://developer.android.com/sdk/compatibility-library.html. but i can't see Support Package in my Android SDK and AVD Manager. there is only Android SDK Tools, revision 15 and Android SDK platform-tools, revision 9 when i expand the

[android-developers] Using Dropbox with Android

2011-09-22 Thread Bishan
I tried to create folder in my dropbox account as below. DropboxAPI api = new DropboxAPI(); api.createFolder(sandbox, StockSys); but i got below exception. 09-23 09:09:24.709: ERROR/AndroidRuntime(439): FATAL EXCEPTION: main 09-23 09:09:24.709: ERROR/AndroidRuntime(439):

Re: [android-developers] Re: How to insert special character into Database

2011-09-21 Thread Bishan
', '0', 'HOTEL', 'BRONZ', '4', '3', 'MAIN ROAD', 'AAA', 'SSS', '1091', 'weqwe', 'Y')'. On 9/21/11, Zsolt Vasvari zvasv...@gmail.com wrote: It's all Unicode, all characters are created equal. On Sep 21, 1:38 pm, Bishan tvbis...@gmail.com wrote: How to insert ' character or special character

[android-developers] How to insert special character into Database

2011-09-20 Thread Bishan
How to insert ' character or special character into Database using sqlite ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email

Re: [android-developers] Get Data from Database of selected Item

2011-09-19 Thread Bishan
correctly? On Mon, Sep 19, 2011 at 11:21 AM, Bishan tvbis...@gmail.com wrote: i got this exception, java.lang.ClassCastException: android.widget.ArrayAdapter for below code. SimpleCursorAdapter simpleCursorAdapter = (SimpleCursorAdapter) parent.getAdapter(); On 9/19/11, Bishan tvbis

Re: [android-developers] Get Data from Database of selected Item

2011-09-19 Thread Bishan
thanx Krishna On 9/19/11, Krishna Prasad krishnaprasadrs.1...@gmail.com wrote: Use Simple cursor adapter insted of array adapter... Check http://thinkandroid.wordpress.com/2010/01/09/simplecursoradapters-and-listviews/ On Mon, Sep 19, 2011 at 4:54 PM, Bishan tvbis...@gmail.com wrote: Got

[android-developers] Get Data from Database of selected Item

2011-09-18 Thread Bishan
I have wrote a program to get students names from database and display them, using ListActivity. and used OnItemClickListener to click on each items. now i want to do, when i click on a student name, display other information of student (age, sex, address) on another screen. how could i do this?

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Bishan
:27 AM, Bishan tvbis...@gmail.com wrote: I have wrote a program to get students names from database and display them, using ListActivity. and used OnItemClickListener to click on each items. now i want to do, when i click on a student name, display other information of student (age, sex

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Bishan
bundle.putString(any name,Id); what is the Id in above code ? On 9/19/11, Krishna Prasad krishnaprasadrs.1...@gmail.com wrote: welcome.. On Mon, Sep 19, 2011 at 10:33 AM, Bishan tvbis...@gmail.com wrote: thanx Krishna :) On 9/19/11, Krishna Prasad krishnaprasadrs.1...@gmail.com wrote

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Bishan
: id means the String variable where u save the cursor.colum value. On Mon, Sep 19, 2011 at 10:53 AM, Bishan tvbis...@gmail.com wrote: bundle.putString(any name,Id); what is the Id in above code ? On 9/19/11, Krishna Prasad krishnaprasadrs.1...@gmail.com wrote: welcome.. On Mon, Sep

Re: [android-developers] Get Data from Database of selected Item

2011-09-18 Thread Bishan
i got this exception, java.lang.ClassCastException: android.widget.ArrayAdapter for below code. SimpleCursorAdapter simpleCursorAdapter = (SimpleCursorAdapter) parent.getAdapter(); On 9/19/11, Bishan tvbis...@gmail.com wrote: thanx Krishna. i'll check this. On 9/19/11, Krishna Prasad

[android-developers] XML files and SQLITE Database

2011-09-14 Thread Bishan
i have a xml file.(pls see attachement). and i need insert data in my xml file to a sqlite database in my android project. hw can i do this ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
thanx skink. i'll try this. :) On Wed, Sep 14, 2011 at 12:33 PM, skink psk...@gmail.com wrote: On Sep 14, 8:49 am, Bishan tvbis...@gmail.com wrote: i have a xml file.(pls see attachement). and i need insert data in my xml file to a sqlite database in my android project. hw can i do

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
any other answers ? On 9/14/11, Bishan tvbis...@gmail.com wrote: thanx skink. i'll try this. :) On Wed, Sep 14, 2011 at 12:33 PM, skink psk...@gmail.com wrote: On Sep 14, 8:49 am, Bishan tvbis...@gmail.com wrote: i have a xml file.(pls see attachement). and i need insert data in my xml

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
k. i got it skink. i know how to read XML. but the problem is how could i insert the data in XML to the my sqlite database table after reading the XML. that's the point whats wrong with me. On 9/14/11, skink psk...@gmail.com wrote: On Sep 14, 9:31 am, Bishan tvbis...@gmail.com wrote: any

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
currently i'm reading XML file and put data into a Vector Object. but i don't know how could i insert the data in that Vector Object into sqlite database. this is the point where i stuck. On 9/14/11, skink psk...@gmail.com wrote: Bishan wrote: k. i got it skink. i know how to read XML

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
thanx Shamim :) On 9/14/11, Bishan tvbis...@gmail.com wrote: currently i'm reading XML file and put data into a Vector Object. but i don't know how could i insert the data in that Vector Object into sqlite database. this is the point where i stuck. On 9/14/11, skink psk...@gmail.com wrote

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
); } } return vClient; } On 9/14/11, skink psk...@gmail.com wrote: On Sep 14, 11:29 am, Bishan tvbis...@gmail.com wrote: currently i'm reading XML file and put data into a Vector Object. but i don't know how could i insert the data

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
. but have no idea about how to insert them into database. On 9/14/11, skink psk...@gmail.com wrote: On Sep 14, 12:15 pm, Bishan tvbis...@gmail.com wrote:                 VectorEgCommon vClient = new VectorEgCommon();                 for (int temp = 0; temp getNodes().getLength(); temp

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
thanx Cristhian. i'll check this. On 9/15/11, Cristhian Flores cif...@gmail.com wrote: Hi Bishan I hope is helpful private var sqlc:SQLConnection = new SQLConnection(); // sqlc is an SQLStatment which we need to execute our sql commands private var sqls:SQLStatement = new SQLStatement

[android-developers] How to Read XML file in SD card

2011-08-30 Thread Bishan
Hi All, I'm new to Android and this is my first e mail to this group. I would like to know how can i read a xml file in sdcard and view it on a text area or any other container. please any one give me a code fragments to do that. (i'm developing android with sdk 10 android 2.3.3) -- You

Re: [android-developers] How to Read XML file in SD card

2011-08-30 Thread Bishan
Thanks TreKing . On 8/31/11, TreKing treking...@gmail.com wrote: On Tue, Aug 30, 2011 at 4:40 AM, Bishan tvbis...@gmail.com wrote: I would like to know how can i read a xml file in sdcard and view it on a text area or any other container. 1 - Read the documentation for how to access the SD