Re: [android-developers] Network File browser

2013-01-01 Thread Sat
Cool thanks .. will check it out .. On Wednesday, January 2, 2013 12:44:56 AM UTC+5:30, Todd wrote: See http://www.samba.org On Dec 31, 2012 10:26 PM, satish bhoyar getsat...@gmail.comjavascript: wrote: hi all, Happy new year to all of you. I am trying to make application like file

Re: [android-developers] bind/unbind service

2012-10-06 Thread Sat
Thanks for the reply guys. So the best way is in onCreate() bind and then in onDestroy() unbind. I had another question that is . The flag BIND_AUTO_CREATE says that it will create a service as long as the binding exist, so if I bind multiple times in the same Activity, lets say in onCreate()

[android-developers] Re: WIN DEATH Logs

2012-09-17 Thread Sat
Thanks for the reply Fahad ya I checked that link .. Not helpful though .. On Saturday, September 15, 2012 4:28:17 PM UTC+5:30, Sat wrote: Hi All, I am getting WIN DEATH: Window log with pause = false. This is not frequent but after this log the service which this activity uses is facing

[android-developers] Re: WIN DEATH Logs

2012-09-16 Thread Sat
Guys please reply ... On Saturday, September 15, 2012 4:28:17 PM UTC+5:30, Sat wrote: Hi All, I am getting WIN DEATH: Window log with pause = false. This is not frequent but after this log the service which this activity uses is facing an ANR. Please tell me why this WIN DEATH: Window

[android-developers] getting the position where text were wrapped in EditText

2011-06-02 Thread sat
Hi everyone, Is there a way I can detect the positions(character positions) in edit text view where words were wrapped. I am using EditText with multiline type, if the text is long, it gets wrapped according to the width of the edit text view, I want to know at which position texts were wrapped

[android-developers] Re: How to change AutoCompleteTextView dropdown background color ?

2011-03-04 Thread sat
Thanks , got what I was looking for , not exactly the same but I can change background image of dropdown using setDropDownBackgroundResource(); On Mar 4, 10:45 am, sat sathvikm...@gmail.com wrote: Hi, As the subject suggests , how to change background of AutoCompleteTextView dropdown. I can

[android-developers] How to change AutoCompleteTextView dropdown background color ?

2011-03-03 Thread sat
Hi, As the subject suggests , how to change background of AutoCompleteTextView dropdown. I can apply any style to the view(TextView) that dropdown box shows but to make the drop down itself transparent I am not able to do ! Any hints ? Thanks -- You received this message because you are

[android-developers] Re: How to control the width and height of Alert dialog.

2010-12-13 Thread sat
that.  The point of AlertDialog is an easy way to through up various standard kinds of dialogs with a standard appearance that you don't control very much.  If you want more control, use Dialog. On Fri, Dec 10, 2010 at 8:20 PM, sat sathvikm...@gmail.com wrote: Hi, Can you point me to some examples where

[android-developers] How to control the width and height of Alert dialog.

2010-12-10 Thread sat
AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle(Title); builder.setItems(items, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int item) {

[android-developers] Re: Porting Javascript Application to Andriod

2010-12-10 Thread sat
Hi, You can check Binding JavaScript code to Android code in Android documentation. After Binding you can call Javascript function from Android code and vice versa. On Dec 9, 2:26 pm, cuil yahoo cuilya...@gmail.com wrote: Hey, We have an application written in Javascript. We want to port it to

[android-developers] Re: How to control the width and height of Alert dialog.

2010-12-10 Thread sat
the Dialog. On 10 çÒÄ, 14:39, sat sathvikm...@gmail.com wrote: AlertDialog.Builder builder = new AlertDialog.Builder(this); š š š š š š builder.setTitle(Title); š š š š š š builder.setItems(items, new DialogInterface.OnClickListener() { š š š š š š š š public void onClick

[android-developers] Re: How to control the width and height of Alert dialog.

2010-12-10 Thread sat
of the shortcuts that AlertDialog provides.   Doug Gordon On Dec 10, 7:39 am, sat sathvikm...@gmail.com wrote: AlertDialog.Builder builder = new AlertDialog.Builder(this);             builder.setTitle(Title);             builder.setItems(items, new DialogInterface.OnClickListener

[android-developers] Doubt regarding redirection of websites to mobile version and address bar of browser.

2010-11-23 Thread sat
Hi 1. I am launching the browser in a normal way with URL supplied as parameter, Intent ln_intent = new Intent(Intent.ACTION_VIEW); ln_intent.setDataAndType(Uri.parse(web_url), text/html); startActivity(ln_intent); here web_url is any web url. This opens the browser with the mobile version of

[android-developers] Re: google api ajax webservice

2010-11-23 Thread sat
Assuming result = your JSON response. JSONObject json = null; JSONObject json_obj = null; JSONArray json_arr = null; json = new JSONObject(result.toString()); json_obj = json.getJSONObject(responseData); json_arr = json_obj.getJSONArray(results); That should help you. On Nov 23, 1:12 pm, Atik

[android-developers] Re: google api ajax webservice

2010-11-23 Thread sat
this in listview. On Nov 23, 4:30 pm, sat sathvikm...@gmail.com wrote: Assuming result = your JSON response. JSONObject json = null; JSONObject json_obj = null; JSONArray json_arr = null; json = new JSONObject(result.toString()); json_obj = json.getJSONObject(responseData); json_arr

[android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread sat
I dint go through ur xml , But I will give an idea. implemet OnListItemClick handler of listview and we get access to the child views , and u can change the background color using it. On Nov 23, 4:23 pm, viktor victor.scherb...@gmail.com wrote: Why did you use complex item layout? Use selector

[android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread sat
@Viktor -- Yeah , Whatever I told is for OnClick , since he said on selection , Click event can be one mode of selection. On Nov 23, 6:55 pm, viktor victor.scherb...@gmail.com wrote: sat, it is not correct, because Francesco wants use a focus. On 23 Лис, 13:47, sat sathvikm...@gmail.com wrote

[android-developers] wikipedia web service for android.

2010-11-16 Thread sat
Hi, Is there any wikipedia web service which can be used in android. I googled it and found web service for Java as under construction. How to access wikipedia articles , Are there any rss feeds for wikipedia(which I can do a SAX parsing and access the article details ? or Are there any web

[android-developers] battery usage in animation

2010-09-24 Thread Sat
Hi, I am trying to do Frame animation. I need help regarding battery life during animation. I want to use as less as possible do it. I wrote thread to do frame animation also I have tried it using AnimationDrawable. But both consumes battery. Any thought on how to improve it? thanks, satish

[android-developers] Pending Intent Problem

2010-08-18 Thread Sat
Hi all, I have created a widget with 3 Image buttons placed on the home screen. All three buttons can launch the activity on one button I need to change Images as the right end of the image is clicked. Now the problem is, Some times the click on the buttons does not responds no activity is