ScrollView中頁面顯示自動滑到最後問題的解決

原因,ScrollView中包含其餘控件,但控件顯示不全,此時會存在焦點問題,佈局顯示回到最後

解決方法:

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    >
    <LinearLayout
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
重點是:

android:focusable="true"
        android:focusableInTouchMode="true"
這兩行加上就好了

發佈了28 篇原創文章 · 獲贊 2 · 訪問量 7萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章