程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> pupupwindow-android popupwindow dismiss()關閉窗體前的處理事件

pupupwindow-android popupwindow dismiss()關閉窗體前的處理事件

編輯:編程綜合問答
android popupwindow dismiss()關閉窗體前的處理事件
            pop.setTouchable(true);
pop.setBackgroundDrawable(new BitmapDrawable()); //

上面兩句代碼當點擊窗體外部popupwindow自動消失
我想讓popupwindow消失前執行一段代碼,比如改變字體等,那麼如何重寫dismiss()方法啊?

貼出部分源碼
public void popup() {//
inflater = (LayoutInflater)popupTest.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View listLayout = inflater.inflate(R.layout.listview, null);
listView= (ListView) listLayout.findViewById(android.R.id.list);
lvButtonAdapter listItemAdapter =
new lvButtonAdapter(this,list1, R.layout.item, new String[]{"text1","text2","ItemImage,RelativeLayout"}, new int[]{R.id.text1,R.id.text2,R.id.pup,R.id.re});

listView.setAdapter(listItemAdapter);
listView.setFocusable(true);
listView.setItemsCanFocus(true);

listView.setOnItemClickListener(new OnItemClickListener(){public void onItemClick(AdapterView<?> arg0, View arg1,int arg2, long arg3) { edit1.getText().insert (edit1.getSelectionStart(),list1.get(arg2).get("text1").toString()); pop.dismiss(); }});//光標處插入文字

pop = new PopupWindow(listLayout, LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
pop.setTouchable(true);
pop.setBackgroundDrawable(new BitmapDrawable()); //

            pop.setFocusable(true);





    }  

最佳回答:


window.setOnDismissListener()添加一個消失的監聽

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved