Wednesday 24 August 2011

How to Set EditText Text start Letter as capital letter?

In Android Layout using an specific inputType Attribute in EditText for automatically capitalizing the first letter

<EditText
android:id="@+id/editText_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textCapSentences"
>
</EditText>


2 comments:

  1. Replies
    1. Dear Anil

      it will work,because the above code suggested by the android developers

      For more information please look in developer site:

      http://developer.android.com/reference/android/widget/TextView.html#attr_android:inputType

      Delete

Android SQLite Database Viewer or Debuging with Stetho

Every Android Developer uses SQLite Database to store data into the Android Application data. But to view the data in SQLite have a lot of...