我有一個數據輸入類型的活動,並使用線性佈局im均勻地分隔文本視圖和edittexts集。然後我有一個滾動視圖,它應該可以讓用戶在softkeyboard啓動時滾動。 如果我使用android:fillViewport
,linearlayout可以正常工作並填充屏幕並均勻分佈每個項目,但是當鍵盤出現並停止每個項目均勻展開時。如果我使用android:windowSoftInputMode="stateVisible|adjustPan"
那麼linearlayout仍然散開,但滾動視圖不工作了(從所有未解決的帖子上,我不認爲你可以有adjustPan工作滾動視圖)scrollview內的Linearlay與偶數分佈
有沒有什麼辦法在scrollview中有一個線性佈局,其中的項目均勻分佈並且仍然可以工作,而softkeyboard則不會改變線性佈局?
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport
>
<LinearLayout
android:gravity="left"
android:orientation="vertical"
android:id="@id/tab2"
android:paddingLeft="40.0dip"
android:paddingTop="0.0dip"
android:paddingRight="40.0dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0">
<TextView
android:id="@id/textViewBrand"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/brand" />
<AutoCompleteTextView
android:id="@id/editTextBrand"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</AutoCompleteTextView>
</LinearLayout>
...more linearlayouts with textview and edittext to be spaced out evenly
感謝您的答案,但如果我layout_height設置爲wrap_content那麼的LinearLayout內的所有項目沒有全面鋪開的頁面,但只是堆疊ontop的對方,並滾動視圖還不能與adjustPan工作組 – Thomas