在使用listView顯示聊天窗口時,彈出輸入法,listview不會自動向上滾動,會遮蓋內容,在manifest中的Activity加入:html
android:windowSoftInputMode="adjustResize"
也沒法解決問題。android
經過百度,找到一位童鞋的博客:http://blog.sina.com.cn/s/blog_9564cb6e0101g2eg.htmlide
解決了個人問題。佈局
原來的ListView佈局以下:
測試
<ListView android:id="@+id/lv_suggestion_list" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_above="@id/bottom_suggestion" android:layout_below="@id/title_suggestion" android:cacheColorHint="#00000000" android:divider="@color/transparent" android:dividerHeight="8dp" android:listSelector="@color/transparent" android:paddingBottom="4dp" android:paddingTop="4dp" />
修改事後的ListView佈局以下:spa
<ListView android:id="@+id/lv_suggestion_list" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_above="@id/bottom_suggestion" android:layout_below="@id/title_suggestion" android:cacheColorHint="#00000000" android:divider="@color/transparent" android:dividerHeight="8dp" android:listSelector="@color/transparent" android:fastScrollEnabled="true" android:scrollbarStyle="insideInset" android:transcriptMode="normal" />
其中加入了這三個屬性:code
android:fastScrollEnabled="true"
android:scrollbarStyle="insideInset"
android:transcriptMode="normal"
orm
通過測試,在彈出輸入框時,ListView能夠正常向上移動,不會遮蓋起內容。
xml