How we see the total content in EditText in android
Posted
by sairam333
on Stack Overflow
See other posts from Stack Overflow
or by sairam333
Published on 2010-03-25T12:54:03Z
Indexed on
2010/03/26
5:33 UTC
Read the original article
Hit count: 491
android
Thank u But after the Edit Text I use the Icons also .So,when i give Wrap_content for that Edittext The icons are displayed only half ,In below my code is there see that one once
<TableRow
android:layout_width="wrap_content"
android:layout_height="fill_parent">
<TextView
android:id="@+id/TextViewEmail"
android:text="Email"
android:textSize="15sp"
android:paddingRight="4dip"
android:textStyle="bold"
android:layout_width="wrap_content"
android:textColor="@android:color/white"
android:layout_gravity="right|center" />
<EditText
android:id="@+id/EditTextEmail"
android:editable="false"
android:clickable="false"
android:textSize="15sp"
android:layout_height="wrap_content"
android:singleLine="true" android:layout_width="150sp"/>
© Stack Overflow or respective owner