我正在爲Android設備製作應用程序,我正在嘗試在LinearLayout中使用ScrollView,但是當我嘗試執行此操作時,ScrollView將獲取ScrollView之後的所有空間和元素在LinearLayout中不起作用。Android:垂直LinearLayout的滾動視圖
例如:
如果滾動型是不是 「全」:
如果滾動型是 「充分」:
正如你可以看到按鈕disapear ...
以下是此活動的代碼:
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_marginLeft="50dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:orientation="vertical"
android:focusable="true"
android:focusableInTouchMode="true"
android:background="@drawable/linearlayoutbackground" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nom_des_joueurs"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_marginBottom="30dp" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/llPlayersName"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/okPlayersName"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/ok"
android:background="@drawable/backgroundbutton"
android:layout_marginTop="30dp" />
</LinearLayout>
在添加Linea中的元素後rLayout誰在ScrollView中。
任何解決方案?
謝謝。
正在寫相同的解決方案在同一時間:-p你更快.. –
謝謝你的工作:) – kakko76