[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 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 to Fron

[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 sub

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

2011-11-13 Thread Bishan
thanks srinivas. On 11/11/11, venkata srinivas namburi 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 wrote: > >> Ho

[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-de

[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 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 that, unfor

[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 received

Re: [android-developers] About Quick Action Dialog

2011-11-03 Thread Bishan
thanx Mark . i'll try this On 11/3/11, Mark Murphy wrote: > On Wed, Nov 2, 2011 at 10:05 PM, Bishan 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] Show Details on PopUp Dialog

2011-11-02 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 th

Re: [android-developers] About Quick Action Dialog

2011-11-02 Thread Bishan
s 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 wrote: >> I have created a Quick Action Dialog after reading article >> on http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-

[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 Ac

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

2011-11-01 Thread Bishan
Thanx Mark :) On 11/1/11, Mark Murphy wrote: > On Tue, Nov 1, 2011 at 12:19 AM, Bishan 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 P

[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 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] 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): java.lang.NullPoint

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

2011-09-20 Thread Bishan
#x27;110003', 'MITHUL'S ', 'R1', '3', '0', 'HOTEL', 'BRONZ', '4', '3', 'MAIN ROAD', 'AAA', 'SSS', '1091', 'weqwe', 'Y')'. On 9/21/11, Zsolt

[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
thanx Krishna On 9/19/11, Krishna Prasad 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 wrote: > >> Got j

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

2011-09-19 Thread Bishan
s from db correctly? > > > On Mon, Sep 19, 2011 at 11:21 AM, Bishan wrote: > >> i got this exception, >> >> java.lang.ClassCastException: android.widget.ArrayAdapter >> >> for below code. >> >> SimpleCursorAdapter simpleCursorAdapter = (Simple

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 wrote: > thanx Krishna. i'll check this. > > On 9/19/11, Krishna Prasad wrote

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

2011-09-18 Thread Bishan
> wrote: > >> id means the String variable where u save the cursor.colum value. >> >> >> On Mon, Sep 19, 2011 at 10:53 AM, Bishan wrote: >> >>> bundle.putString("any name",Id); >>> >>> what is the " Id " in above c

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 wrote: > welcome.. > > On Mon, Sep 19, 2011 at 10:33 AM, Bishan wrote: > >> thanx Krishna :) >> >> On 9/19/11, Krishna Prasad wrote: >&

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

2011-09-18 Thread Bishan
le); > startActivity(intent); > > On Mon, Sep 19, 2011 at 10:27 AM, Bishan 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. >&

[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] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
thanx Cristhian. i'll check this. On 9/15/11, Cristhian Flores 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:SQLSt

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

2011-09-14 Thread Bishan
"'MAHARAGAMA', " + "'COLOMBO', " + "1091, " + "'Test Client', " + "'Y')&q

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

2011-09-14 Thread Bishan
Util.getTagValue("comments", element), Util.getTagValue("active", element)); vClient.add(cl); } } return vClient; } On 9/14/11, skink wrote: > > > On Se

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

2011-09-14 Thread Bishan
thanx Shamim :) On 9/14/11, Bishan 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 wrote: >

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 wrote: > > > Bishan wrote: >> k. i got it skink. >> >

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 wrote: > > > On Sep 14, 9:31 am, Bishan wrote: >> any other ans

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

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

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 wrote: > > > On Sep 14, 8:49 am, Bishan 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

[android-developers] XML files and SQLITE Database

2011-09-13 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 android-deve

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

2011-08-30 Thread Bishan
Thanks TreKing . On 8/31/11, TreKing wrote: > On Tue, Aug 30, 2011 at 4:40 AM, Bishan 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 acce

[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 receiv