scroll - edittext inside tablerow android -


i have textview , edittext inside tablerow.. problem when try write many chars in edittext cant see writing..it seems problem in width..any way make multiline row or scolling edittext while writting?

<tablelayout     android:id="@+id/table"     android:layout_height="wrap_content"      android:layout_width="fill_parent"     android:paddingtop="30dip"     android:paddingleft="10dip"     android:paddingright="10dip"     android:layout_below="@id/banner" >     <tablerow>         <textview             android:id="@+id/username_label"             android:layout_width="wrap_content"             android:layout_height="wrap_content"             android:textcolor="#fff"             android:textsize="18dip"              android:text="username"              />         <edittext             android:id="@+id/entry1"             android:layout_width="fill_parent"             android:layout_height="wrap_content" />     </tablerow>      <tablerow>         <textview             android:id="@+id/password_label"             android:layout_width="fill_parent"             android:layout_height="wrap_content"             android:textcolor="#fff"             android:textsize="18dip"              android:text="password" />         <edittext             android:id="@+id/entry2"             android:layout_width="fill_parent"             android:layout_height="wrap_content"             android:password="true" />     </tablerow>      </tablelayout> 

have tried android:lines/android:maxlines?


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -