[android-developers] answering machine in android

2011-02-11 Thread deepak kumar
Dear Sir/Madam, We are trying to develop an application based on answering machine, in which the application has to receive the call during certain period, has to answer the call by playing a pre- recorded message and has to record the message of the caller. The application has to

[android-developers] Dynamically adding view in layout xml in android

2011-02-15 Thread Deepak Kumar
Hi All, I have created a xml layout which includes ImageButtons in row,col format.So,layout having some initial number of views.Now,I want to add extra views at run time i.e through code.Is it possible? How to do it? Thanks, -- You received this message because you are

Re: [android-developers] Re: Dynamically adding view in layout xml in android

2011-02-15 Thread Deepak Kumar
with in layout properly.Is there any alternate way or related method is available? On Tue, Feb 15, 2011 at 4:09 PM, CrazzyAndroidians nithin@gmail.comwrote: yes, you can do it, using LayoutInflater and addView() Androidian On Feb 15, 3:13 pm, Deepak Kumar deepak.kumar...@gmail.com wrote

[android-developers] Density independent values through code for views

2011-02-15 Thread Deepak Kumar
Hi All, I have added views to layout in xml through code(i.e dynamically).And given properties for button such as topMargin,leftMargin etc.Yeah it will appear properly in one device.Because I gave values as per adjustment to the current device(hdpi854) but if I will run the same

Re: [android-developers] Density independent values through code for views

2011-02-15 Thread Deepak Kumar
().density; *return* (*int*)(dips * *DIP_SCALE* + 0.5f); } } and using that in your code... On 15 Feb 2011, at 14:13, Pepijn Van Eeckhoudt wrote: On 15/02/2011 15:03, Deepak Kumar wrote: One of the solution can be multiplying these values with ratio (according to device

[android-developers] MapActivity ClassNotFound Error

2011-02-22 Thread Deepak Kumar
Hi All, I am using a class that extends MapActivity.I got following *NoClassDefFoundError *error. Uncaught handler: thread main exiting due to uncaught exception E/AndroidRuntime( 4538): *java.lang.NoClassDefFoundError*: com.permeative.cityessentials.MapPrac

Re: [android-developers] MapActivity ClassNotFound Error

2011-02-22 Thread Deepak Kumar
Yeah, I have added it to manifest. On Tue, Feb 22, 2011 at 10:01 PM, TreKing treking...@gmail.com wrote: On Tue, Feb 22, 2011 at 5:22 AM, Deepak Kumar deepak.kumar...@gmail.comwrote: But when I have created different project where I am using these class MapPrac extends

Re: [android-developers] Re: MapActivity ClassNotFound Error

2011-02-22 Thread Deepak Kumar
tag in the Application Manifest file. Here is a link explaining maps http://code.google.com/android/add-ons/google-apis/maps-overview.html On Feb 22, 6:22 am, Deepak Kumar deepak.kumar...@gmail.com wrote: Hi All, I am using a class that extends MapActivity.I got

[android-developers] Explicitly showing soft keyboard won't work most of the times

2011-02-28 Thread Deepak Kumar
Hi All, On loading of PopupWindow I am trying to display soft keyboard through code.Layout of Popup contains one of the edit text.I am using following code but its not working:- imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);

[android-developers] when PopUpWindow finish animation

2011-02-28 Thread Deepak Kumar
Hi All, I am using PopUpWindow which will shown with animation.After creating object then I am calling below method as follows to show the popup after 1s from bottom to top in animated way:- CODE::- pop.setLocationAndUpdate(); :

[android-developers] setOnItemClickListener not called on pressing of view for particular item in a custom List

2011-03-07 Thread Deepak Kumar
Hi All, I am using custom list with each item in the list have RelativeLayout with 1 textview and 1 Button.Then at run time I am not getting response in OnItemClickListener upon selection on particular item.As per follwing code(I am using BaseAdapter for item in a custom list):-

[android-developers] Map API Key is not working generated through signup Certificate

2011-03-08 Thread Deepak Kumar
Hi All, I have generated the Map API key from MD5 fingureprint of signing certificate.But its not working.I have generated Map API Key from debug certificate that works fine. Even I have properly created keystore by exporting the application and then used those

Re: [android-developers] Map API Key is not working generated through signup Certificate

2011-03-08 Thread Deepak Kumar
Yeah I did that, I have signed application in eclipse as follows:- Android Tools-Export Signed Application Package-Then I followed all steps After that it generated the .apk folder that i think is of no use because still I have to generate the key and then replace in xml for

Re: [android-developers] Map API Key is not working generated through signup Certificate

2011-03-09 Thread Deepak Kumar
but thats not working. Or *can I release the app that uses Debug certificate generated Map API Key?If users will download it whether it will work fine or not*? On Wed, Mar 9, 2011 at 12:05 PM, Deepak Kumar deepak.kumar...@gmail.comwrote: Yeah I did that, I have signed

[android-developers] Small Size Activity Layout as compare to Original Device size

2011-03-25 Thread Deepak Kumar
Hi All, I am creating one login screen that should have to appear at the center of the screen(smaller in size as compared to actual device size * eg*:150*150 for dev size 320*480) .It will look something like alert dialog that have options for username textview passwd textview 2

Re: [android-developers] Small Size Activity Layout as compare to Original Device size

2011-03-25 Thread Deepak Kumar
. Transparent is set in my colours.xml file as - color name=transparent#/color Then in your manifest file set the theme for your activity to @style/ModifiedDialog Regards, Cliff Davies On Fri, Mar 25, 2011 at 8:28 AM, Deepak Kumar deepak.kumar...@gmail.com wrote: Hi All

[android-developers] android:password property is not working for Edittext used in AlertDialog

2011-03-25 Thread Deepak Kumar
Hi All, I am setting android:password=*true* property for Edittext that I have used in Alert dialog for login screen but its not working. i.e it will not show the typed characters in edittext password in dot(*.*) format. Yeah this property is working fine for edittext used in

[android-developers] HttpURLConnectionImpl$LocalCloseInputStream with HttpsURLConnection

2011-04-06 Thread Deepak Kumar
Hi All, I am using following code(Note that *HttpsURLConnection* is used):- Code:- ... con.setDefaultSSLSocketFactory(ctx.getSocketFactory()); url = new URL(urls); con = (HttpsURLConnection) url.openConnection();

[android-developers] Launch SoftKeyboard without view in Android

2011-11-23 Thread Deepak Kumar
it is possible or not? Thanks Regards, DEEPAK KUMAR -- 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

Re: [android-developers] Launch SoftKeyboard without view in Android

2011-11-23 Thread Deepak Kumar
Anup On Wed, Nov 23, 2011 at 6:43 PM, Deepak Kumar deepak.kumar...@gmail.com wrote: Hi All, I need the solution of following two things as early as possible:- 1)How to launch a softKeyboard even when there is no edittext or TextView present programmatically

[android-developers] Building ndk liberary in android Failed

2011-11-27 Thread Deepak Kumar
/JointSpace/DirectFB141_2k11R3/DirectFB_Voodoo/lib/libjslibclient.o \ . . Thanks Regards, DEEPAK KUMAR, -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Building ndk liberary in android Failed

2011-11-28 Thread Deepak Kumar
have the library on your system. Thanks On Mon, Nov 28, 2011 at 11:39 AM, Deepak Kumar deepak.kumar...@gmail.comwrote: Hi All, I am trying to build a android project that uses ndk.And in Android.mk it loads the liberary that is writtern in C language(libdirectfb.c etc

[android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Hi All, If we long press on any of the keys on soft-keyboard, we get other language characters options.But I want only English or particular set of languages.So how to do it? Or how to disable long press on soft Keyboard? Thanks Regards, DEEPAK KUMAR -- You received

Re: [android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
On Mon, Nov 28, 2011 at 4:03 PM, Raghav Sood raghavs...@androidactivist.org wrote: You cannot control the soft keyboard as it is not a part of your application. If you want an English only keyboard, write your own and bundle it with your app. On Mon, Nov 28, 2011 at 3:48 PM, Deepak Kumar

Re: [android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Can I disable long press atleast? Thanks, On Mon, Nov 28, 2011 at 4:13 PM, Deepak Kumar deepak.kumar...@gmail.comwrote: On Mon, Nov 28, 2011 at 4:03 PM, Raghav Sood raghavs...@androidactivist.org wrote: You cannot control the soft keyboard as it is not a part of your application

Re: [android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Hi, Is it possible without creating my own keyboard and disable long press on soft keyboard whichever currently in use? Or atleast can we disable for default soft keyboard that we get from google NOT third party soft keyboard app? Thanks, DEEPAK KUMAR On Mon, Nov 28, 2011 at 7:03 PM, Jim

Re: [android-developers] Re: Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Filter in the input text means?Actually once I will long press on any of the key present on softKeyboard it will popup options and upon selection ,it will be displayed in Edittext. Thanks, DEEPAK KUMAR On Mon, Nov 28, 2011 at 8:26 PM, gil eichenbaum gileichenb...@gmail.comwrote

[android-developers] Connection reset by peer - Bluetooth

2012-07-11 Thread Deepak Kumar
(); } } catch (Exception e) { e.printStackTrace(); } } Log.d(TAG, Inside Outside read Catch with *erroe*block); } Thanks Regards, DEEPAK KUMAR -- You received this message because you are subscribed

[android-developers] Activity TextView displayed incorrect value received from Service Thread.

2016-04-22 Thread Deepak Kumar
value in TextView. So, please let me know how to solve this problem. Thanks & regards, Deepak Kumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an ema