編輯:關於Android編程
首先在上節中是使用dialog 實現的,(點擊連接),現在我就講些popupwindow 的實現,這個相對dialog比較簡單,因為不用自定義dialog.
實現代碼很簡單如下:
代碼片段:
[java]
public void showPopupWindow(int x, int y) {
layout = (LinearLayout) LayoutInflater.from(MainActivity.this).inflate(
R.layout.dialog, null);
listView = (ListView) layout.findViewById(R.id.lv_dialog);
listView.setAdapter(new ArrayAdapter<String>(MainActivity.this,
R.layout.text, R.id.tv_text, title));
popupWindow = new PopupWindow(MainActivity.this);
popupWindow.setBackgroundDrawable(new BitmapDrawable());
popupWindow
.setWidth(getWindowManager().getDefaultDisplay().getWidth() / 2);
popupWindow.setHeight(300);
popupWindow.setOutsideTouchable(true);
popupWindow.setFocusable(true);
popupWindow.setContentView(layout);
// showAsDropDown會把裡面的view作為參照物,所以要那滿屏幕parent
// popupWindow.showAsDropDown(findViewById(R.id.tv_title), x, 10);
popupWindow.showAtLocation(findViewById(R.id.main), Gravity.LEFT
| Gravity.TOP, x, y);//需要指定Gravity,默認情況是center.
listView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
button.setText(title[arg2]);
popupWindow.dismiss();
popupWindow = null;
}
});
}
[java]
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
button.getTop();
int y = button.getBottom() * 3 / 2;
int x = getWindowManager().getDefaultDisplay().getWidth() / 4;
showPopupWindow(x, y);
} www.2cto.com
});
樣子我就不貼了,和前面一章dialog顯示的一樣.
在這裡遇到個小問題:int y = button.getBottom() * 3 / 2;這裡獲取的y坐標應該是 button.getBottom();可是這樣寫popupwindow就顯示位置不對了,在button中間,不知道為什麼。
如果知道為什麼了通知我一下,共同學習嘛,先謝謝了。
struts2 接收輸入參數的3種方式在我們的生活中,有很多的網頁都存在用戶登陸界面,當我們在登陸界面上輸入自己的用戶名和密碼後,這些數據都會傳入後台,供後台來驗證我們所
一開始接觸android,只知道拖拉布局,不靈活,難看很。後來才發現,原來和jsp一樣,可以靈活使用xml文件。 話不多說,直接上例子 任何布局既可以在代碼中實現,也可以
介紹realm是一個跨平台移動數據庫引擎,支持iOS、OS X(Objective-C和Swift)以及Android。2014年7月發布。由YCombinator孵化的
什麼是線程?線程或者線程執行本質上就是一串命令(也是程序代碼),然後我們把它發送給操作系統執行。一般來說,我們的CPU在任何時候一個核只能處理一個線程。多核處理器(目前大
啟動AVD模擬器異常:Cannot set up guest memor