程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-當點擊 edit text 時,顯示 ListView 中最後的 item

android-當點擊 edit text 時,顯示 ListView 中最後的 item

編輯:編程綜合問答
當點擊 edit text 時,顯示 ListView 中最後的 item

現在這樣做是為了點擊 edit text 時,獲取 listview 最後一個 item 的焦點:

 bodyText.setOnFocusChangeListener(new OnFocusChangeListener() {

        public void onFocusChange(View v, boolean hasFocus) {               
            getListView().setSelection(getListView().getCount());
        }
    });

    bodyText.setOnClickListener(new View.OnClickListener() {

        public void onClick(View view) {
            getListView().setSelection(getListView().getCount());
        }
    });

代碼可以運行也獲取最後的 item,問題是軟鍵盤出現會覆蓋 listview 中最後3個 items。有什麼方法能讓軟鍵盤出現後重新調整屏幕,顯示最後的 item?

最佳回答:


創建自定義的 ListView :

public class CustomListView extends ListView {
public CustomListView (Context context) {
    super(context);
}
public CustomListView (Context context, AttributeSet attrs) {
    super(context, attrs);
}
public CustomListView (Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}
@Override
protected void onSizeChanged(int xNew, int yNew, int xOld, int yOld) {
    super.onSizeChanged(xNew, yNew, xOld, yOld);
    setSelection(getCount());
}
}

在xml中添加:

ListView android:id="@+id/android:list" android:layout_width="fill_parent" android:layout_height="fill_parent"
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved