[android-developers] Set password text as case sensitive

2010-09-23 Thread harshe
HI , I want to know how to set the password and user name edit text so that it will be case sensitive.. as of now in the login screen If i give my credentials user name and password in any case( higher or lower) it accepts.. i mean the fields are case in -sensitive.. Can anyone please help

[android-developers] Re: allign text vertically in a text view

2010-08-01 Thread harshe
with that. Just declare you DemoView in the layout. For now it goes like this: LinearLayout ... ImageView .../ your.package.name.DemoView .../ /LinearLayout And set this layout to be activity's content. On Jul 27, 1:32 pm, harshe hars...@gmail.com wrote: Thanks Paul.As u said, the following

[android-developers] Pinch in , Pinch-out Zoom in android

2010-07-30 Thread harshe
HI, I need to implement the pinch in and pinch out zoom on a list adapter. I have a list of contacts sorted alphabetically. Using pinch-in the list has to be zoomed out(shrinked).. and in Pinch-Out the list has to be Zoom-in (enlarged or expanded)..i tried with onTouchListener and

[android-developers] Re: allign text vertically in a text view

2010-07-27 Thread harshe
, 12:38 am, harshe hars...@gmail.com wrote: I have a textview placed vertically in an activity.. I Want the text within the textview to be shown as bottom to top facing right side. Can anyone please help me out.. my XML file is TextView     android:layout_height=200dp

[android-developers] allign text vertically in a text view

2010-07-25 Thread harshe
I have a textview placed vertically in an activity.. I Want the text within the textview to be shown as bottom to top facing right side. Can anyone please help me out.. my XML file is TextView android:layout_height=200dp android:layout_width=50dp android:paddingTop=100dp

[android-developers] Re: To display the soft keyboard during the launch itself

2010-07-25 Thread harshe
the EditText's XML layout. EditText   requestFocus/ /EditText -Matt On Jul 23, 4:52 am, harshe hars...@gmail.com wrote: no it didnot work :( am working in android sdk 2.2 my manifest is ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res

[android-developers] Re: To display the soft keyboard during the launch itself

2010-07-23 Thread harshe
android:name=android.intent.category.LAUNCHER / /intent-filter /activity /application /manifest please help me .. Thanks Harshe On Jul 23, 5:51 am, Matt matthew.quig...@gmail.com wrote: http://developer.android.com/guide/topics/manifest/activity-element.h... On Jul

[android-developers] To display the soft keyboard during the launch itself

2010-07-22 Thread harshe
i have an activity with few edit text views and a button. The Soft Keyboard is visible when I click the edit text view. But i want the soft keyboard to be visible during the launch itself , without clicking the edit text itself i must get the soft keyboard on the screen. Can anyone plzzz help me