[android-developers] How to connect an app with a site?

2012-02-09 Thread juliagrig
Hi all, this I would like to achieve, is to connect my site with my andoid app. I would like to transfer informations between them. What I sould read about? There is one way to do this, or more? Could you share with me where could I find samples, or tutorials or something that will help me? Thanks

[android-developers] Re: an app with web-services

2011-12-06 Thread juliagrig
thank you so much! On 6 Δεκ, 03:51, Ali Chousein wrote: > The first step is to check the documentation of the web-services you > want to communicate with. The documentation will give you the URLs > which you should communicate with. Use HTTPGet (http:// > developer.android.com/reference/org/apach

[android-developers] Re: an app with web-services

2011-12-04 Thread juliagrig
gt; > > > On Sun, Dec 4, 2011 at 6:51 PM, juliagrig wrote: > > Hi all, > > I would like to know, how I could make an application which will be > > linked to a web server and use web services. > > Could you help me to make a beginning, because I have not d

[android-developers] an app with web-services

2011-12-04 Thread juliagrig
Hi all, I would like to know, how I could make an application which will be linked to a web server and use web services. Could you help me to make a beginning, because I have not dealt at all with a similar issue in the past. Thanks in advance. -- You received this message because you are subscr

[android-developers] Export Data from my app

2011-09-07 Thread juliagrig
Hi all, I would like to know if and how could I export data from my app . I am using sqlite3 into my app, and I have one table with 7 fields. What kind of file is supported by android software? I read about "save to SD card", but I didn't underastand many things. Please, give some links or idea

[android-developers] Unable to start activity, null pointer exception

2011-07-25 Thread juliagrig
I am working in tha sample of notepad3! I have a list with a simple cursor adapter. When I click in a list item my app crashes. the logcat: 07-25 16:44:59.403: ERROR/AndroidRuntime(580): FATAL EXCEPTION: main 07-25 16:44:59.403: ERROR/AndroidRuntime(580): java.lang.RuntimeException: Unable to sta

[android-developers] List View and Simple Cursor Adapter

2011-07-16 Thread juliagrig
Hi all, I have a listview in my app and a SimpleCursor Adapter in a different class. In getView method I tried to set properties fom the text view of each list item. It works fine, but I have a log.i(",") message in the end of the getView() method and I see that this method run 3 times. So , I s

[android-developers] List View and Simple Cursor Adapter

2011-07-16 Thread juliagrig
Hi all, I have a listview in my app and a SimpleCursor Adapter in a different class. In getView method I tried to set properties fom the text view of each list item. It works fine, but I have a log.i(",") message in the end of the getView() method and I see that this method run 3 times. So , I s

[android-developers] Android SQL problem on app similar to notepad tutorial:CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0

2011-07-04 Thread juliagrig
I am triying to do an app using the notepad tutorial of Android as a guide. I can insert new elements in my expandable list (simple expandable adapter)without problems, but if i want to update the fields of one of this elements an error is prompted. I revisited the tutorial lots of times but i cant

[android-developers] Re: Expandable List and GetChildCount

2011-06-29 Thread juliagrig
Streets Of Boston I understood completely that's you told, but my problem is tha the "getChildrenCount( groupPosition )==0" brings me force close. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android

[android-developers] Re: Expandable List and GetChildCount

2011-06-29 Thread juliagrig
indicator is an imageview.Then , I tried to set the visibility of this image depending on the number of children. But when I debug the "if( getChildrenCount( groupPosition )==0) { indicator.setVisibility( View.INVISIBLE );. " the app crashes. The "0" is the problem, beacause when I turn it to

[android-developers] Expandable List and GetChildCount

2011-06-28 Thread juliagrig
I have an ExpandableListView where some groups has no children, and I did "getChildrenCount(groupPosition)" . My purpose is not to display the indicator in the groups with no children. I did if( getChildrenCount( groupPosition )==0) { indicator.setVisibilit

[android-developers] Expandable List and GetChildCount

2011-06-28 Thread juliagrig
I have an ExpandableListView where some groups has no children, and I did "getChildrenCount(groupPosition)" . My purpose is not to display the indicator in the groups with no children. I did if( getChildrenCount( groupPosition )==0) { indicator.setVisibilit

[android-developers] Expandable List and Intents

2011-06-24 Thread juliagrig
hi all, sorry for my english, i have a problem with my expandable list. I have tried to fix this with many ways but i didn't achieve anything. So, I have an expandable list view, with simpleExpandable List Adapter. My list is ok, but when i call an intent , for example in groupClick , doesn't work

[android-developers] Handle checkboxes in an expandable listview.

2011-06-07 Thread juliagrig
Hi All, I am working in an expandable list view by an simple expandable list adapter. Also, I have fixed a database, where I store my data.I managed to display the data in expandable list view. Each child has a textview and a checkbox. Here is what I'm trying to achieve: 1) the checkboxes change

[android-developers] how to add a second text view in group_row of expandable list?

2011-06-06 Thread juliagrig
hi, I tried many ways to display another textview in group_row of expandable list, but all of my attempts failed. I put it first of all on xml file only, then i tried to display it from getGroupView, but it does nothing. The image view works fine by setGroupIndicator, bur the text view or other wid