[android-developers] re: uploading files to web server working on .net using c#

2011-02-22 Thread vivin joy
Hi guys, i have an android app, which produces a XML string. i need to upload it to web server working on .net using C#. i tried sending it as a string but i got the error as SoapFault - faultcode: 'soap:Client' faultstring: 'System.Web.Services.Protocols.SoapException: Server did not

[android-developers] Redrawing a view when the transparent activity closes

2011-02-09 Thread vivin joy
Hi All, i have an Activity called MainActivity. It has a custom view on it and a button. When i press a button, it opens a new Activity with a translucent theme so that MainActiivty is paused. The Second Activity has got a EditText. and i type something over there and press a button which

[android-developers] reading files from sdcard and displaying only the image files in the listView

2011-01-27 Thread vivin joy
hi , when my app starts, i need to check the sdcard and display all the image files present in the sdcard in a listview and when the user selects one of them , i need to display it in an image view. though the second part is relatively easy once u get the path of that particular image. But i

[android-developers] GestureOverlayView preventing OnSingletap/onDoubletap methods to be called

2011-01-25 Thread vivin joy
Hi i have an custom view. in main.Xml. this custom view is laid as a child view of the gestureOverlayView. so that gestureOverlayView is the parent view. i have allowed my mainActivity to implement the onGesturelistener and OnDoubleTapListener. but all the touch events are being passed to the

[android-developers] Dynamically Changing Gesture color

2011-01-18 Thread vivin joy
hi i have an app, in which when a check box is checked the gesture colors changes. but i find that gestureOverlayView.setGestureColor=#FF, doesn't even work. It only accepts the xml attribute concerned with the gesture color provided in the layout. -- You received this message because you

[android-developers] disabling GestureOverlayView

2011-01-18 Thread vivin joy
i have my own custom view over which i have a GestureOverlayView and a checkbox. when the checkbox is checked, i need to disable the GestureOverlayView so that no gesture strokes appear on the screen but still the touch events be dispatched to my custom View.. how do i do that? -- You received

[android-developers] Creating Activity from a View Class

2011-01-18 Thread vivin joy
i have two Activities. one is the MainActivity and other an activity where a user could type anything. i have a class called commentclass which extends View class. the main.xml layout uses this class. this main.xml is displayed using the mainActivity . the commentclass has a ontouch event.