Android聊天背景圖片變形,通常是因爲鍵盤引發的(這個是本身調戲糖寶app中出現的問題,今天抽時間解決下)。能夠參看StackOverFlow解決的地址:http://stackoverflow.com/questions/5307264/how-to-prevent-soft-keyboard-from-resizing-background-imageandroid
我這裏用的也是參考這裏的方法:app
解決方法很簡單:ide
一、在AndroidManifest.xml文件裏面的Activity配置:android:windowSoftInputMode="adjustResize|stateAlwaysHidden"佈局
eg:post
<activity android:name=".MainActivity" android:label="@string/app_name" android:windowSoftInputMode="adjustResize|stateAlwaysHidden"/>spa
二、不要將背景圖片放在XML佈局文件中,而是用代碼實現,在onCreate方法中加上:getWindow().setBackgroundDrawableResource(R.drawable.aa);.net
eg:orm
setContentView(R.layout.activity_main);xml
getWindow().setBackgroundDrawableResource(R.drawable.bg);事件
三、在listview中加上android:transcriptMode="normal"或者設置成android:transcriptMode="alwaysScroll" (這個貌似修改不修改都不影響的)
eg:
<ListView
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="@null"
android:listSelector="@android :color/transparent"
android:transcriptMode="alwaysScroll"
/>
四、監聽EditText點擊事件,設置以下:
editText = (EditText)findViewById(R.id.editText);
editText.postDelayed(new Runnable() {
public void run() {
listView.setSelection(lists.size() - 1);
}
}, 100);