[android-developers] Re: Physical keyboard long press popup

2009-05-25 Thread narendrasingh.bi...@gmail.com
There is something like : android:popupCharacters="@string/ alternates_for_a_c", in the key tag inside the kbd_qwerty.xml, here @string/alternates_for_a_c tells the character to be shown in the pop up. You can put this àáâãäåæç in the strings.xml file On May 13, 4:23 pm, skyman wrote: > Hello, >

[android-developers] How to customize android keyboard

2009-05-25 Thread narendrasingh.bi...@gmail.com
How can we customize keyboard provided by android, i tried with sample softkeyboard but it created a new keyboard itself. I want to do my customization on the android provided keyboard and where can i find its source code. --~--~-~--~~~---~--~~ You received this me

[android-developers] how to use unicode in android:codes attribute

2009-05-25 Thread narendrasingh.bi...@gmail.com
I am trying using unicode in android:codes attribute of qwerty.xml, but it is printing space instead of that character. Any clue?? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Re: How to customize android keyboard

2009-05-25 Thread narendrasingh.bi...@gmail.com
board. On May 26, 5:05 am, Mark Murphy wrote: > narendrasingh.bi...@gmail.com wrote: > > How can we customizekeyboardprovided by android, i tried with sample > > softkeyboard but it created a newkeyboarditself. I want to do my > > customization on the android providedkeybo

[android-developers] How to get source code out of a .apk file

2009-05-25 Thread narendrasingh.bi...@gmail.com
Hi Guys, Is there a way to get source code out of a .apk file 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@googlegroup

[android-developers] Re: Problem with getChildCount method???

2009-06-04 Thread narendrasingh.bi...@gmail.com
What if we have to find a single view down in the list On Jun 3, 7:20 pm, Streets Of Boston wrote: > You have to do this through your BaseAdapter. > Make sure that your BaseAdapter's individual elements/items have a > variable that can determine if one is checked or not. > > If you want to check

[android-developers] How to read not visible elements of listview

2009-06-04 Thread narendrasingh.bi...@gmail.com
Hi guys, I have a list view which contains some 20 odd items along with a check box. Now when iam trying to delete an item by checking its checkbox, iam getting NullPointerException at below written code: CheckBox cbox= (CheckBox) view.getChildAt(j).findViewById (R.id.alarmCheck); here view.get

[android-developers] Re: How to read not visible elements of listview

2009-06-04 Thread narendrasingh.bi...@gmail.com
Mark, Can u plz show me some sample code how u achieved it. On Jun 4, 6:12 pm, "Mark Murphy" wrote: > > I have a list view which contains some 20 odd items along with a check > > box. Now when iam trying to delete an item by checking its checkbox, > > iam getting NullPointerException at below wr

[android-developers] Re: How to read not visible elements of listview

2009-06-04 Thread narendrasingh.bi...@gmail.com
Or can u tell that how can i get the "_id" of a particular item selected(checked). I tried getSelectedItemId() and other methods but im not getting the appropriate _id. Plz help!!! On Jun 4, 6:27 pm, "narendrasingh.bi...@gmail.com" wrote: > Mark, Can u plz show me