我在edittext下面有edittext和一個按鈕。 edittext的寬度爲fill_parent,高度爲wrap_content。Android中的EditText
我的郵件覆蓋全屏幕,因爲這是我的按鈕是不可見的,它隱藏在下面的虛擬鍵盤
任何一個可以排序這個問題。 謝謝。
我在edittext下面有edittext和一個按鈕。 edittext的寬度爲fill_parent,高度爲wrap_content。Android中的EditText
我的郵件覆蓋全屏幕,因爲這是我的按鈕是不可見的,它隱藏在下面的虛擬鍵盤
任何一個可以排序這個問題。 謝謝。
我已經受夠了類似的東西是最成功的,但並不相同,安德魯的解決方案:
<?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 is my button"/>
</LinearLayout>
試着在你的EditText叫你的佈局文件中插入這樣的:
android:layout_above="@+id/ID OF YOUR BUTTON HERE"
此外,您在底部按鈕可能要求:
android:layout_alignParentBottom="true"
你怎麼知道他在使用'RelativeLayout'? – Cristian 2010-10-08 15:53:39
假設你想要 EditText覆蓋所有scr除了按鈕EEN ...
<?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="fill_parent"
android:layout_weight="1" />
<Button
android:id="@+id/mybutton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="this is my button"/>
</LinearLayout>
哪裏碼?屏幕截圖沒有用。 – Cristian 2010-10-08 15:54:21