EditText in Android -


i have edittext , button below edittext. edittext has width fill_parent , height wrap_content.

my messages covers full screen, due button not visible hides below virtual keyboard

can 1 sort problem. thanks.

alt text alt text

i've had success similar, not identical to, andrew's solution:

<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android"  android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent">     <edittext         android:id="@+id/myedittext"         android:layout_width="fill_parent"         android:layout_height="0dp"         android:layout_weight="1" />     <button         android:id="@+id/mybutton"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:layout_weight="0"         android:text="this button"/> </linearlayout> 

Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -