它對於默認inputType正常工作,但對於數字,屏幕不會調整大小。 我在清單文件中使用android:windowSoftInputMode="adjustResize"
進行活動。 我有 '郵件ID',並在form.like底部的 '手機號碼' 字段此如果inputType是數字軟鍵盤覆蓋edittext字段
它工作正常的郵件ID ..
但對於手機號碼是號碼字段..
這裏我的xml文件的一部分... mobile no是最後有inputType編號的editTest字段。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">
<ScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white_smoke"
android:orientation="vertical"
android:paddingBottom="8dp">
<LinearLayout
style="@style/FormItemStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/TextFormLabel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Name*" />
<EditText
android:id="@+id/edt_f_name"
style="@style/EditTextBgStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2.5"
android:inputType="textCapWords|textNoSuggestions" />
</LinearLayout>
.
.
.
.
other view
.
.
<LinearLayout
style="@style/FormItemStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<CheckBox
android:id="@+id/check_adds_same_as_per"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Same as Permanent Address" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/TextFormLabel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Communication Address*" />
<EditText
android:id="@+id/edt_commun_adds"
style="@style/EditTextBgStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2.5"
android:gravity="top"
android:lines="3"
android:maxLines="4"
android:inputType="textMultiLine|textNoSuggestions" />
</LinearLayout>
</LinearLayout>
<LinearLayout
style="@style/FormItemStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/TextFormLabel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Mail ID" />
<EditText
android:id="@+id/edt_mail_id"
style="@style/EditTextBgStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2.5" />
</LinearLayout>
<LinearLayout
style="@style/FormItemStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/TextFormLabel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Mobile No*" />
<EditText
android:id="@+id/edt_mobile_no"
style="@style/EditTextBgStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2.5"
android:inputType="number"
android:maxLength="10" />
</LinearLayout>
</LinearLayout>
</ScrollView>
<include layout="@layout/master_button" />
</LinearLayout>
嘗試使用Android:windowSoftInputMode = 「adjustSpan」 – Akash
你的意思是 「adjustPan」 吧?我已經嘗試過也..它不起作用。 –
嘗試使用滾動視圖進行佈局 – Akash