[android-developers] How to get the platform signing key

2012-07-20 Thread Narendra Singh Rathore
Hi all, I need to know how can I get the platform signing key. I googled a lot, but unable to find the step by step process for that. Please guide me the way to do that. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Application to start with

2012-07-21 Thread Narendra Singh Rathore
On Thu, Jul 19, 2012 at 3:49 PM, tj mailme.ta...@gmail.com wrote: I am new to android development. I have worked before on java and .NET but am a bit confused with android programming. Can you plz suggest some ideas as to on what basic application should I start working on. I made basic

[android-developers] how to display a toast after 10 seconds from starting Asynctask

2012-07-31 Thread Narendra Singh Rathore
Hi all, please suggest me how to execute something after 10 seconds from the start of AsyncTask. I have used AsyncTask for different purpose. But, now I want to update my UI after 10 seconds. Or to show a toast after specific time. I actually want to perform some other task after 10 seconds,

Re: [android-developers] Re: how to display a toast after 10 seconds from starting Asynctask

2012-08-02 Thread Narendra Singh Rathore
Okay, I will try this. Anyways, thankyou all for valuable suggestions. -- 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] getting assets file in Uri ......FileNotFoundException

2012-08-06 Thread Narendra Singh Rathore
Hi all, I am not getting what is wrong here in the following statement. Please tell if anyone know about the cause of this behaviour. *mUris[0]=Uri.parse(file:///android_asset/bottom_logo.png);* I am getting *FileNotFoundException* for the above statement. Am I giving the wrong path or something

Re: [android-developers] getting assets file in Uri ......FileNotFoundException

2012-08-06 Thread Narendra Singh Rathore
On Mon, Aug 6, 2012 at 11:59 PM, Justin Anderson magouyaw...@gmail.comwrote: Here, Let Me Google That For You... http://lmgtfy.com/?q=android+access+assets Maybe one day, you'll be able to learn how to fish too... Hey Justin, let me tell you one thing, I do ask questions here after googling

Re: [android-developers] Re: getting assets file in Uri ......FileNotFoundException

2012-08-06 Thread Narendra Singh Rathore
Care to elaborate on what you've done? Ok, I clear to you what I want. This one is working very fine. I mean *no FileNotFoundException*. *mUris[0]=Uri.parse(Environment.getExternalStorageDirectory()+/last_slide.png); * But, this one is not working, giving me file not found.

Re: [android-developers] Re: getting assets file in Uri ......FileNotFoundException

2012-08-07 Thread Narendra Singh Rathore
On Tue, Aug 7, 2012 at 12:43 PM, skink psk...@gmail.com wrote: what statement throws FileNotFoundException? try { fis = new FileInputStream(mUris[0].toString()); } catch (FileNotFoundException e) { e.printStackTrace();

Re: [android-developers] List of views to change in layout

2012-08-18 Thread Narendra Singh Rathore
On Sat, Aug 18, 2012 at 2:20 AM, Budd buddf...@gmail.com wrote: Hi, I got a question about how to change to view dymaically. I have a empty FrameLayout in my activity. I want to do is every 10 seconds 1) Remove all the view in the layout 2) create new videoview or webview (depend on what

[android-developers] how to view the most remote item of gridview

2012-08-22 Thread Narendra Singh Rathore
Hi all, Please let me know how to view / focus the last item of the gridview on some event, in case there are a lot of items in the gridview For example, I have 100 items in my gridview, and currently 1st item is having focus. I want to view the last (100th) item, on some event (*without

Re: [android-developers] More Than One Spinners

2012-08-24 Thread Narendra Singh Rathore
On Sat, Aug 18, 2012 at 2:32 AM, S Awan juwerian.so...@gmail.com wrote: Hi, i wanna set more than one spinner with different strings and different icons ..i hve done this all in one spinner correctly but when i set the second spinner with different strings and icons it loads the same

[android-developers] gridview onItemClick gets executed even on empty space after the last item

2012-08-29 Thread Narendra Singh Rathore
Hi all developers, I am performing item click of gridview, all is working well unless when I click the empty space after the last item of gridview. On the above mentioned circumstance of clicking empty space, my OnItemClickListener executes (even if there is not any item, returning a wrong

Re: [android-developers] gridview onItemClick gets executed even on empty space after the last item

2012-08-31 Thread Narendra Singh Rathore
On Wed, Aug 29, 2012 at 10:03 PM, Justin Anderson magouyaw...@gmail.comwrote: Please post the relevant code where you are setting up and handling your item click. All right, following is my onItemClick event of gridview, on which I am adding the clicked image in the gallery situated on the

Re: [android-developers] hi

2012-08-31 Thread Narendra Singh Rathore
I have an idea for that. Why don't you use database for that. Database should contain at least 2 tables - one will contain chapter name with no.(primary key) Other will contain the chapter no. as foreign key, and contents (one by one) Then, on clicking chapter name from the list, extract its

Re: [android-developers] hi

2012-08-31 Thread Narendra Singh Rathore
On Fri, Aug 31, 2012 at 4:54 PM, sree android android.sreeni...@gmail.comwrote: thank you for information. Its my pleasure! -- 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] specifyng id in case of include directive

2012-09-09 Thread Narendra Singh Rathore
Hi all, I just wanted to know, how to specify id, while using *include *directive, as suppose I have two buttons ok and cancel in two different layouts. and I need to make a layout (xml file) for ok and cancel button. Now, how to specify id from two different layouts for both the buttons together,

[android-developers] handler pause and resume event

2012-09-19 Thread Narendra Singh Rathore
Hi all devs, I am currently using handlers to pausing and playing Runnable. I have two buttons - play and pause. On pause button click, I want to pause the event/runnable, which I am doing as follows: *handler.removeCallbacks(runnable);* * * but this seems to stop my current runnable, and when

[android-developers] sqlite database

2011-11-08 Thread Narendra Singh Rathore
hi frnds, I actually want to show my database table in tabular form in my avd. Is there any simple way to achieve that. I am currently using single class for database (no sqliteDBHelper), with the help of cursor object. Cursor cur; tv.setText(cur.getString(0)+ +cur.getString(1));

Re: [android-developers] sqlite database

2011-11-09 Thread Narendra Singh Rathore
Thnx buddiesn my almost prob solved. But, even now, a li'l problem is still left that how to add my DB table column values to that table column...Please direct me. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] sqlite database

2011-11-09 Thread Narendra Singh Rathore
Thnx a lot friends, I achieved my goal.. With Regards.. Narendra -- 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] hyperlink using textview

2011-11-09 Thread Narendra Singh Rathore
hey friends, can anyone please suggest me how to use textview as a hyperlink.. Thnx in advance.. NSR.. -- 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

Re: [android-developers] hyperlink using textview

2011-11-09 Thread Narendra Singh Rathore
sry pawan, if u guess it silly question, bt I just thought I came at ryt place. U can just suggest me the way, if u wish, else is my part.. -- 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: hyperlink using textview

2011-11-09 Thread Narendra Singh Rathore
Thnx friends, I got what I needed..Anyways once again sorry for silly question. -- 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

Re: [android-developers] unable to access dictionary

2011-11-09 Thread Narendra Singh Rathore
So Dev, what have u used for that...Can U plz tell in short how u applied that? -- 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

Re: [android-developers] mapview

2011-11-10 Thread Narendra Singh Rathore
Hey Omollo, it seems you haven't taken MapController. MapController map = mapView.getController(); Try this, I hope you will succeed. -- 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] transferring information from one application to another

2011-11-12 Thread Narendra Singh Rathore
Hi all, I used intent for switching from one application to another by the following code: Intent i = new Intent(Intent.ACTION_MAIN); PackageManager manager = getPackageManager(); i = manager.getLaunchIntentForPackage(package name); i.addCategory(Intent.CATEGORY_LAUNCHER); startActivity(i);

Re: [android-developers] transferring information from one application to another

2011-11-12 Thread Narendra Singh Rathore
ok, so u mean..in the same way transferring data from an activity to another. I need to try it first. -- 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

Re: [android-developers] transferring information from one application to another

2011-11-13 Thread Narendra Singh Rathore
Thank you all... NSR -- 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+unsubscr...@googlegroups.com For

Re: [android-developers] WebView Problem

2011-11-14 Thread Narendra Singh Rathore
Have you taken internet permission in androidmanifest.xml. That may be the problem. What exception are you getting? -- 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

Re: [android-developers] Tutorial Needed

2012-03-12 Thread Narendra Singh Rathore
On Sun, Mar 11, 2012 at 9:44 AM, rayhan rayha...@gmail.com wrote: Now i am learning android developing.I want to know that where i can get tutorial from basic to advance level to learn android. Refer to the book Beginning Android Application Develoopment. Its a nice book for beginners. --

Re: [android-developers] Android book for learners

2012-03-12 Thread Narendra Singh Rathore
On Sat, Mar 10, 2012 at 11:18 AM, pandey praveen@gmail.com wrote: Hi , I am new to android and I have been working as android developer from 4 months . I was looking for some good book on android application development and I am confused about which one to buy . Help please ..

Re: [android-developers] Emulator Issue (Android 4.0)

2012-03-13 Thread Narendra Singh Rathore
On Wed, Dec 7, 2011 at 2:35 AM, Muhammad Noor muhammadsaddamn...@gmail.comwrote: Hi, I am new to the Android Technology, i have setup following the guide mentioned on the website, and create my first project called Hello World! I able to run that project fine first day, now its second day

Re: [android-developers] How to move a button on the screen? setBounds does not work

2012-03-13 Thread Narendra Singh Rathore
On Wed, Dec 7, 2011 at 3:11 PM, melakamc melak...@gmail.com wrote: I need to move a button according to the points given. the button should move to various positions depending on the points given. is there a way to do it? please help I guess, you can do that dynamically (java code) using

Re: [android-developers] Tablet Application Support

2012-03-13 Thread Narendra Singh Rathore
On Wed, Dec 7, 2011 at 10:31 PM, chandu parasigani chanduparasig...@gmail.com wrote: I have developed the application in android2.1. its working fine in small screens,normal screens and also large screens for this i have added the following code in manifest file supports-screens

Re: [android-developers] webview problem

2012-03-13 Thread Narendra Singh Rathore
On Tue, Mar 13, 2012 at 3:25 PM, harshita agrawal harshitaagrawa...@gmail.com wrote: we pass url to open in new browser like that .. Intent in = new Intent (Intent.ACTION_VIEW ,Uri.parse(url)); startActivity(in); Now i have html content(not

Re: [android-developers] Re: webview problem

2012-03-13 Thread Narendra Singh Rathore
On Tue, Mar 13, 2012 at 5:00 PM, harshita agrawal harshitaagrawa...@gmail.com wrote: actually , there is more link in webpage .and i am not able to maintain history of web page.so i have to show in default browser. Read WebView documentation for that.

Re: [android-developers] Re: webview problem

2012-03-13 Thread Narendra Singh Rathore
On Tue, Mar 13, 2012 at 5:17 PM, harshita agrawal harshitaagrawa...@gmail.com wrote: i think ,it can be solve by writing html content in a file of local folder.can i show file in default web browser. No, you cannot. -- You received this message because you are subscribed to the Google

Re: [android-developers] can't get emulator to show app

2012-03-13 Thread Narendra Singh Rathore
On Tue, Mar 13, 2012 at 1:55 AM, gswartz gswa...@synergydatasystems.comwrote: Can anyone suggest what else I can try to make this work? Thanks. Try uninstalling and then re-installing your application back. I hope, that will work for you. -- You received this message because you are

Re: [android-developers] Re: can't get emulator to show app

2012-03-13 Thread Narendra Singh Rathore
On Tue, Mar 13, 2012 at 6:03 PM, gswartz gswa...@synergydatasystems.comwrote: Is there a separate process that I need to go through before hitting run in eclipse to install it on the emulator? No, there is nothing like that. Have you tried what I suggested? -- You received this message

Re: [android-developers] Re: can't get emulator to show app

2012-03-13 Thread Narendra Singh Rathore
On Tue, Mar 13, 2012 at 6:20 PM, gswartz gswa...@synergydatasystems.comwrote: That's my problem... I don't know how to do what you've suggested. If it's simply hitting run in eclipse then yes, I've tried it about 50 times now. If there's something more to it, then no because I don't know

Re: [android-developers] connect with database

2012-03-14 Thread Narendra Singh Rathore
On Wed, Mar 14, 2012 at 2:56 PM, rajesh rogueraje...@gmail.com wrote: Hi all, I have an EditText and a Button in my Android application. When I'll enter the values in the EditText, the values will store in a database, and i want to retrive this data from database.how can i do this?. i am

[android-developers] blocking call from particular number

2012-03-14 Thread Narendra Singh Rathore
Hi all, Can anyone please suggest me how to block incoming call from a particular phone number, in our application. What should I use for that? Is Broadcast Receiver fine for that, or should I use something else? -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Google Map Activity

2012-03-14 Thread Narendra Singh Rathore
On Wed, Mar 14, 2012 at 4:52 AM, aatici settarat...@gmail.com wrote: Hello ! Im studying on map activities .. Actually ı have a homework .. ı can not see google map in emulator .. there is an only plaid page .. ı maen ı, cannnot see the map .. Could u help me please .. 1) Check internet

Re: [android-developers] How to read the large sized text file

2012-03-15 Thread Narendra Singh Rathore
On Thu, Mar 15, 2012 at 4:16 AM, 김유섭 j.rechard...@gmail.com wrote: I think you'd better use database like sqlite. Thanks for suggesting me, but I m actually having a large text file. And thus it would be much difficult for me to fill database one by one a lot of records. Do you have any

Re: [android-developers] How to read the large sized text file

2012-03-16 Thread Narendra Singh Rathore
On Fri, Mar 16, 2012 at 8:06 AM, Miguel Morales therevolti...@gmail.comwrote: Try using a buffered input stream. In other words, stream read the file. You should also know that phones are very limited in memory. Loading more than a few MB into memory spells trouble. I even tried that, but

[android-developers] Google map: getting exception when trying to get location name of clicked co-ordinates

2012-03-16 Thread Narendra Singh Rathore
Hi all, I am using google map in my application. Till now, I have successfully shown the map with marker, as well as *got the clicked co-ordinates*, with the help of boolean method *onTouchEvent*of MapOverlay extending com.google.android.maps.Overlay. Now, I am trying to get the location name(s)

Re: [android-developers] How to get Streetview in mapactivity

2012-03-16 Thread Narendra Singh Rathore
On Fri, Mar 16, 2012 at 4:15 PM, Android Developer c2dmdevelo...@gmail.comwrote: Hi All, StreetView method in now depricated in mapactivity. how do we display the map with streetview. Add this to your code: *mapView.setStreetView(true); * -- You received this message because you are

Re: [android-developers] How to get Streetview in mapactivity

2012-03-16 Thread Narendra Singh Rathore
On Fri, Mar 16, 2012 at 4:55 PM, Android Developer c2dmdevelo...@gmail.comwrote: Hi This method is already deprecated. i used it but its not working'. Yes, I got your problem. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] How to get Streetview in mapactivity

2012-03-16 Thread Narendra Singh Rathore
Have a look at the following link: http://code.google.com/p/android/issues/detail?id=10317 -- 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

Re: [android-developers] How to read the large sized text file

2012-03-16 Thread Narendra Singh Rathore
On Fri, Mar 16, 2012 at 7:25 PM, TreKing treking...@gmail.com wrote: On Fri, Mar 16, 2012 at 3:32 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: I even tried that, but still faced the same exception. Which you still have failed to elaborate on. What is the exception MESSAGE

Re: [android-developers] Facebook integration

2012-03-16 Thread Narendra Singh Rathore
On Mon, Mar 12, 2012 at 4:25 PM, Live Happy livehap...@gmail.com wrote: i have integrate face book in my android application Can you please suggest me how to integrate that in brief steps? -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] How to read the large sized text file

2012-03-17 Thread Narendra Singh Rathore
On Fri, Mar 16, 2012 at 8:18 PM, TreKing treking...@gmail.com wrote: You posted the exception itself. You did NOT post the exception's MESSAGE. I said before, if you call getMessage() on the exception object, it gives you a REASON WHY the generic IOException was raised. OK, I got what you

Re: [android-developers] Problem occurred in activity class

2012-03-19 Thread Narendra Singh Rathore
On Mon, Mar 19, 2012 at 5:34 PM, rajesh rogueraje...@gmail.com wrote: Hi All, When i was implementing a button in my activity class my application automatically crashed.How can i overcome this problem?. Mark is right, unless we have knowledge about your exception, we would be unable

Re: [android-developers] Re : Button onclick

2012-03-21 Thread Narendra Singh Rathore
On Tue, Mar 20, 2012 at 2:24 PM, vivek elangovan elangovan.vi...@gmail.comwrote: on clicking the button then only i need to display input field otherwise i have to hide fields and have to fill data Why don't you set initial visibility of the fields to be INVISIBLE and on Button

Re: [android-developers] Recently released: SocialNav

2012-03-25 Thread Narendra Singh Rathore
On Sun, Mar 25, 2012 at 3:12 AM, Ali Chousein ali.chous...@gmail.comwrote: An individually developed Android application, where social networking and mobile navigation meet. Thats great Ali, Congratulations and keep it up. -- You received this message because you are subscribed to the

Re: [android-developers] How to set the background image in ListView

2012-03-25 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 6:28 AM, Justin Anderson magouyaw...@gmail.comwrote: I don't know if it would work, but you could possibly try making the background image for each item as a transparent drawable and then setting the one background image you want on the listview... This will surely

Re: [android-developers] How to get string text from AutoCompleteTextView in android?

2012-03-25 Thread Narendra Singh Rathore
On Sat, Mar 24, 2012 at 11:51 PM, SUNIL KUMAR geekysu...@gmail.com wrote: please solve this problem. If your problem is only that, you want to get selected text/string in autocomplete, then you can simply solve it as follows: autoComplete_object.getText().toString(); -- You received this

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 4:40 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: Hi, I want to sent Text Message from my android emaulator to any email address. How to i do that Plz anybody Help me? You need to configure your emulator with your gmail account in order to

Re: [android-developers] Highlight Text in Webview

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 4:47 PM, Satya satya...@gmail.com wrote: Hi All, I need to highlight the text in webview can any one give me the solution. Refer the link as follows: http://stackoverflow.com/questions/5294562/android-webview-highlight-a-specific-word-in-a-page-using-javascript --

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 5:31 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: Thanks for reply Narendra, can u tell me how do i configure my emulator with gmail? Well Ravindra, I haven't tried it yet. But may the following link help you out.

Re: [android-developers] How to sent SMS text message to any email address.

2012-03-26 Thread Narendra Singh Rathore
On Mon, Mar 26, 2012 at 5:59 PM, ravindra bhavsar ravindra.bhavs...@gmail.com wrote: i configure my gmail account with emulator.How to send sms to perticular email address.? Hi Ravindra, as I told you earlier, I haven't tried it yet. Just google out and you may find an appropriate answer.

[android-developers] drawing an empty circle

2012-03-27 Thread Narendra Singh Rathore
Hi all, I am here trying to draw a circle using Canvas class, but my requirement is just to draw the boundary/circumference of the circle. The remaining part of the circle should be empty. For eg, I am drawing a circle of yellow color, just want to show the yellow boundary, else should be empty.

Re: [android-developers] Android app as background service

2012-03-30 Thread Narendra Singh Rathore
On Fri, Mar 30, 2012 at 12:40 PM, Neil neil.gh...@gmail.com wrote: Hi All, I want to create an Android app as background service. Specifically . I want the app to respond when there an incoming call and do some function getting the caller information. Any pointer will be appreciated ! I

Re: [android-developers] Textview gravity resets

2012-03-31 Thread Narendra Singh Rathore
On Sat, Mar 31, 2012 at 4:24 AM, adev enric...@gmail.com wrote: How can I avoid this in xml Why don't you try to do this in your activity/java file (dynamically)? I think that will solve your problem. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: Textview gravity resets

2012-03-31 Thread Narendra Singh Rathore
On Sun, Apr 1, 2012 at 8:01 AM, adev enric...@gmail.com wrote: Sure I can reset the gravity on all of them in code, but that defeats the purpose of using the XML. No, not at all. Just reset the gravity of only the TextView in code. You need not to reset the gravity of all of them, as you are

Re: [android-developers] setting Wallpaper in Android using button

2012-04-04 Thread Narendra Singh Rathore
On Tue, Apr 3, 2012 at 3:11 PM, baturanija1 jadrankobodiroga1...@gmail.comwrote: Please, send me some of your codes to see if it will work.Thanke you very much Refer the link as follows: http://blog.georgenguyen.info/index.php/2012/android-how-to-programmatically-set-android-wallpaper/ Its

[android-developers] How to stop getCount() of ArrayAdapter for custom listview from being called automatically?

2012-04-15 Thread Narendra Singh Rathore
Hi all, I want to populate the listview (custom listview). I am doing that using - a) EditText, in which I type a word. b) Button, onClick of which sets the adapter to the list. c) SQLiteDatabase, for firing query in order to populate the list. *Note: *The query uses the text from EditText.

Re: [android-developers] How to stop getCount() of ArrayAdapter for custom listview from being called automatically?

2012-04-15 Thread Narendra Singh Rathore
On Mon, Apr 16, 2012 at 3:29 AM, TreKing treking...@gmail.com wrote: On Sun, Apr 15, 2012 at 11:27 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: NumberFormatException: Unable to parse ' ' as number. What should I do in order to solve my problem? Check that what you're

Re: [android-developers] Re: How to stop getCount() of ArrayAdapter for custom listview from being called automatically?

2012-04-18 Thread Narendra Singh Rathore
On Tue, Apr 17, 2012 at 2:59 PM, tomc_apadmi thom...@apadmi.com wrote: I believe getCount() is called as part of the adapter figuring out how it is going to be displayed. Perhaps clicking on editText is causing a softkeyboard to appear? This would change the dimensions of the screen and

Re: [android-developers] How to stop getCount() of ArrayAdapter for custom listview from being called automatically?

2012-04-18 Thread Narendra Singh Rathore
IDK, but a break point there see what the call stack looks like to see what is calling into your function when the text changes. Ok, I will try that. Also, setting an adapter on a button click seems like a bad thing. So, what should I do if I want to get value by EditText on button

Re: [android-developers] Re: How to stop getCount() of ArrayAdapter for custom listview from being called automatically?

2012-04-18 Thread Narendra Singh Rathore
On Thu, Apr 19, 2012 at 9:56 AM, Zsolt Vasvari zvasv...@gmail.com wrote: You need to make sure the getCount() call always returns something valid. Exactly. getCount() is part of the contract of the Adapter. Even if you could work around some issue you are having, you may still break on

Re: [android-developers] RadioGroup OnClickListener

2012-04-24 Thread Narendra Singh Rathore
On Sun, Apr 15, 2012 at 10:42 PM, Mohamed Sobhy m.sobhy.9...@gmail.comwrote: So how come that RadioGroup class has a setOnClickListener but not a getOnClickListener? What can I use to go around this problem? What do you want to do with RadioGroup? If you want to get any particular

[android-developers] admob in android sdk 2.2

2012-04-25 Thread Narendra Singh Rathore
Hi all, Can anybody please tell if it is possible to use adView with android sdk 2.2. I have recently upgraded adView library from Admob Sdk 4.0 to sdk 6.0, so it is giving the error as follows: *you must have AdActivity declared in AndroidManifest.xml with configChanges.* which later, after

Re: [android-developers] Regarding emulator

2012-05-01 Thread Narendra Singh Rathore
On Tue, May 1, 2012 at 11:34 AM, sourabh sahu souruit...@gmail.com wrote: Hello All, How to download app from market and run on emulator. For running the app on emulator, you need to install the apk of that app on emulator, which you can simply do by the command adb install name of your

[android-developers] drag and drop in case of view flipper

2012-05-02 Thread Narendra Singh Rathore
Hi all, what I am doing is just dragging items from grid view and dropping them to gallery view one by one. All is working fine in this case. But now, I need that initially, when my gallery is empty, *I want to show some text in place of that gallery. For that purpose, I am using viewFlipper in

[android-developers] Re: drag and drop in case of view flipper

2012-05-03 Thread Narendra Singh Rathore
On Thu, May 3, 2012 at 10:30 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: Hi all, what I am doing is just dragging items from grid view and dropping them to gallery view one by one. All is working fine in this case. But now, I need that initially, when my gallery is empty, *I

Re: [android-developers] start activity

2012-05-03 Thread Narendra Singh Rathore
On Thu, May 3, 2012 at 11:53 AM, sushma reddy sushmithareddy...@gmail.comwrote: I want to start an activity which is in different package from the current package. I am getting errors..can u please tell me how to achieve this functionality?? Sure I can. Use the code

[android-developers] gridview empty cell selection doesn't remove instantly after drag-n-drop from gridview

2012-05-04 Thread Narendra Singh Rathore
Hello all, I want to drag-n-drop images from gridview to gallery, and successfully doing that. The only problem, I am having is that when I drag the last image and drop it to gallery, the selection of empty cell (which I just moved) remains visible until I click somewhere on the screen, or the

Re: [android-developers] start activity

2012-05-04 Thread Narendra Singh Rathore
On Fri, May 4, 2012 at 5:05 PM, sushmitha sushmithareddy...@gmail.comwrote: Intent i = new Intent(); PackageManager manager = getPackageManager(); i = manager.getLaunchIntentForPackage(package_name_to_switch);

Re: [android-developers] start activity

2012-05-04 Thread Narendra Singh Rathore
On Fri, May 4, 2012 at 5:15 PM, asheesh arya asheesharya...@gmail.comwrote: http://stackoverflow.com/questions/2741857/launch-activities-from-different-package Here is the another way I was talking about. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] start activity

2012-05-04 Thread Narendra Singh Rathore
On Fri, May 4, 2012 at 5:53 PM, BNReddy narayanareddy...@gmail.com wrote: Intent intent=new Intent(getApplicationContext(), nextActivity.class); startActivity(intent); this all so working. Are you really sure about this Narayana? Please, first read the question clearly, then answer me.

Re: [android-developers] Slide Show App for Android

2012-05-06 Thread Narendra Singh Rathore
On Mon, May 7, 2012 at 12:39 AM, Jason Teagle teagle.ja...@gmail.comwrote: How to create a Slide show app for android ?? can i get the source code for this app ?? Yes, I can give you the source code for that. But what will I get for that? -- You received this message because you are

[android-developers] Re: gridview empty cell selection doesn't remove instantly after drag-n-drop from gridview

2012-05-06 Thread Narendra Singh Rathore
Can anyone plz tell me why this is happening, or how do I solve this issue? With Regards, NSR. -- 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] Re: gridview empty cell selection doesn't remove instantly after drag-n-drop from gridview

2012-05-07 Thread Narendra Singh Rathore
If we could, don't you think we would have done so by now? Have you *tried* calling setSelection(-1), or calling requestFocus() on another View to take the focus away from the GridView? Well, I tried both of them, but nothing seems to work for me. Have you posted some code to show us how

Re: [android-developers] Re: gridview empty cell selection doesn't remove instantly after drag-n-drop from gridview

2012-05-07 Thread Narendra Singh Rathore
3. Can the gallery actually *accept* the focus? If it can't, then trying to give it the focus is probably failing and throwing the focus back where it came from - onto the grid. Make sure that you call setFocusable(true) and setFocusableInTouchMode(true) on the gallery view. This one helped

Re: [android-developers] Re: gridview empty cell selection doesn't remove instantly after drag-n-drop from gridview

2012-05-07 Thread Narendra Singh Rathore
You only need to call those once, when you first create the gallery view - after that calling it again shouldn't have any effect. Ok, I agree. Did you try changing the order of setSelection() and requestFocus()? Did you try calling draggableGrid.invalidate() after setSelection() and

Re: [android-developers] Re: gridview empty cell selection doesn't remove instantly after drag-n-drop from gridview

2012-05-07 Thread Narendra Singh Rathore
OK, one more thing you could try, and then I'm out of ideas. When you remove the last item from the grid view, call setFocusable(false) and setFocusableInTouchMode(false) on it *before* calling requestFocus() elsewhere. That way, it should *never* be able to get the focus back. When you add

Re: [android-developers] Re: gridview empty cell selection doesn't remove instantly after drag-n-drop from gridview

2012-05-07 Thread Narendra Singh Rathore
Anyways, thanks a lot for giving your precious time and concern. With Regards, NSR... -- 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,

Re: [android-developers] Voice recognition

2012-05-08 Thread Narendra Singh Rathore
On Mon, Apr 30, 2012 at 8:12 PM, venkat v v.veng...@gmail.com wrote: Hi, I'm developing an application based in Text to Speech and Speech to Text using Eclipse and I tried by getting code, VoiceRecognition.java from developer website. But it Says the message Recognizer not present. Is it

Re: [android-developers] ListView items

2012-05-10 Thread Narendra Singh Rathore
On Wed, May 9, 2012 at 5:49 PM, nageswara rao rajana nagu.raj...@gmail.com wrote: Hi, How to generate xml file form list view items. Please help me... Did you want this or something else? -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] ListView items

2012-05-10 Thread Narendra Singh Rathore
On Thu, May 10, 2012 at 11:59 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Wed, May 9, 2012 at 5:49 PM, nageswara rao rajana nagu.raj...@gmail.com wrote: Hi, How to generate xml file form list view items. Please help me... Did you want this or something else

Re: [android-developers] how to get id or value previous viewflipper

2012-05-11 Thread Narendra Singh Rathore
On Fri, Dec 16, 2011 at 12:11 PM, Horrrorgoogle dharma.kshe...@gmail.comwrote: I have eight viewflipper. so if i am clicked viewflipper5 then next time viewflipper1. so how to get information of viewflipper5 in the viewflipper1. give me some examples. Let it be more clear to me. What

Re: [android-developers] how to get id or value previous viewflipper

2012-05-13 Thread Narendra Singh Rathore
That is not more clear... Ok But, I guess, we should discuss here regarding this thread, shouldn't we? -- 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

[android-developers] sending message

2011-11-22 Thread Narendra Singh Rathore
Hi all, Can any one plz suggest me how to send sms and email using android app. any help will be appreciated. -- 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

Re: [android-developers] sending message

2011-11-22 Thread Narendra Singh Rathore
hey Raghav I actually want to develop an application for sending sms I hope u got it now -- 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,

[android-developers] fetching image from sqlite

2011-11-22 Thread Narendra Singh Rathore
Hi all I am stucked in a problem Here I want to retrieve image from sqlite database and show it in gridview I am actually giving path of that image in database, which I put in android_assets Plz help me to do that. -- You received this message because you are subscribed to the Google Groups

[android-developers] database connectivity on real device

2011-11-29 Thread Narendra Singh Rathore
Hi all, plz help me connecting the sqlite database onto a real device. I have connected it to the android emulator easily, using push in DDMS - file Explorer - data/data/package name/ur_database. It worked fine. But, now when I going to use real device (Samsung Galaxy Pop) for database, it is

Re: [android-developers] database connectivity on real device

2011-11-29 Thread Narendra Singh Rathore
Absolutely creating.. Actually its data/data/package_name/database/database_name. is it ok, now.? -- 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] database connectivity on real device

2011-11-29 Thread Narendra Singh Rathore
On Tue, Nov 29, 2011 at 3:01 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: Absolutely creating.. Actually its data/data/package_name/database/database_name. is it ok, now.? I m even unable to open data folder (DDMS-file Explorer - *data*), while using real device. -- You

Re: [android-developers] database connectivity on real device

2011-11-29 Thread Narendra Singh Rathore
Now, I guess no one can help me out.. ** *H* -- 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

  1   2   3   >