在使用listview顯示聊天視窗時,彈出輸入法,listview不會自動向上滾動,會遮蓋內容,在manifest中的activity加入:
?1android:windowsoftinputmode="adjustresize"
也無法解決問題。
解決了我的問題。
原來的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布局如下:
1<
listview
2android:id
="@+id/lv_suggestion_list"
3android:layout_width
="match_parent"
4android:layout_height
="wrap_content"
5android:layout_above
="@id/bottom_suggestion"
6android:layout_below
="@id/title_suggestion"
7android:cachecolorhint
="#00000000"
8android:divider
="@color/transparent"
9android:dividerheight
="8dp"
10android:listselector
="@color/transparent"
11android:fastscrollenabled
="true"
12android:scrollbarstyle
="insideinset"
13android:transcriptmode
="normal"
/>
其中加入了這三個屬性:
android:fastscrollenabled="true"
android:scrollbarstyle="insideinset"
android:transcriptmode="normal"
自動向上滾動框的製作
隔一段時間慢慢向上滾動一段距離!如圖 img 保證不會出現回滾。即由最後乙個元素再滾到第乙個元素是向上滾動而不是向下。用ul來製作,乙個li相當於每次顯示的一行,滾到時的動畫效果用transition來製作。思路是設定顯示的這個元素的margintop值設定為他的行高的負值,一旦動畫完成就從ul中刪...
HTML中文字自動向上滾動
html head title 文字自動向上滾動 佇立 在窗邊 凝視 人來人往 飄散的髮絲帶著微雨 a a href 似乎 它也在期待 a a href 期待他的出現 a a href 天空飄著幸福的微雨 a a href 空氣散發幸福的氣息 a a href 她的臉上 堆滿幸福的期待 a a hr...
滑鼠使用技巧 讓網頁自動向下翻或向上翻
通常在瀏覽網頁的時候,實現往下翻或網上翻,大家都是手動滾動滑鼠滾輪,可是對於一些愛看 的朋友,或者看長篇文章的朋友來說,不斷用手去滾動滾輪實在是很麻煩。這裡交給大家乙個使用滑鼠滾輪的小技巧,讓您看 的時候,不用再一直手按滑鼠了,這個小技巧實現的功能就是讓網頁自動往下翻或者網上翻。技巧如下 按住滑鼠中...