android PopupWindow例程

 

 

 

 

xxxx.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="horizontal"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:background="#FFFFFFFF">

 

    <ImageView android:id="@+id/img"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_margin="5px"/>

    <LinearLayout android:orientation="vertical"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content">

        <TextView android:id="@+id/title"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:textColor="#FF000000"

            android:textSize="35px" />

        <TextView android:id="@+id/info"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:textColor="#FF000000"

            android:textSize="14px" />

    </LinearLayout>

</LinearLayout>

 

 

MainPage.java

public class MainPage extends Activity {

 

       final private String LOG_TAG = "fpMainPage";

       private ListView listView;

       private LinearLayout layout;

       BroadcastReceiverHelper  rhelper;

 

       @Override

       public void onCreate(Bundle savedInstanceState) {

              super.onCreate(savedInstanceState);

              layout = new LinearLayout(this);

              listView = new ListView(this);

              listView.setPadding(100, 130, 200, 130);

 

              SimpleAdapter adapter = new SimpleAdapter(this, getData(),R.layout.xxxx,

                            new String[]{"title","info","img"},

                            new int[]{R.id.titleR.id.infoR.id.img});

              listView.setAdapter(adapter);

              layout.addView(listView);

              setContentView(layout);

 

           Resources res = getResources();

           Drawable drawable = res.getDrawable(R.drawable.bg5);

           layout.setBackgroundColor(0xFFFFFFFF);

           listView.setBackgroundDrawable(drawable);

 

       rhelper=new BroadcastReceiverHelper(this);

       rhelper.registerAction("android.intent.action.menulongpress");

       }

 

       private List<Map<String, Object>> getData() {

 

              List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();

              Map<String, Object> map = new HashMap<String, Object>();

              map.put("title", "g1");

              map.put("info", "google1");

              map.put("img", R.drawable.ic_launcher_home);

              list.add(map);

 

              return list;

       }

 

    public class BroadcastReceiverHelper extends BroadcastReceiver {

 

        Context ct=null;

        BroadcastReceiverHelper receiver;

 

        public BroadcastReceiverHelper(Context c){

            ct=c;

            receiver=this;

        }

 

        public void registerAction(String action){

            IntentFilter filter=new IntentFilter();

            filter.addAction(action);

            ct.registerReceiver(receiver, filter);

        }

 

        @Override

        public void onReceive(Context context, Intent intent) {

        if(intent.getAction().equals("android.intent.action.menulongpress")){

             Log.d(LOG_TAG"android.intent.action.menulongpress received!");

             showFpPopWindow();

        }

        }

}

 

    private void showFpPopWindow(){

           LinearLayout layout2;

           layout2 = new LinearLayout(this);

           Button b = new Button(this);

           Button b2 = new Button(this);

           layout2.addView(b);

           layout2.addView(b2);

           layout2.setBackgroundDrawable(null);

           b.setText("test pop.");

           b2.setText("hello!");

           PopupWindow pw = new PopupWindow(this);

           pw.setContentView(layout2);

           pw.setFocusable(true);

           pw.setWidth(600);

           pw.setHeight(100);

           pw.showAtLocation(getWindow().peekDecorView()Gravity.LEFT | Gravity.BOTTOM, 0, 0);

    }

}

 

解析:长按menuPhoneWindow发送Broadcast: android.intent.action.menulongpress,接收到后,弹出PopupWindow。显示效果如下:

popupwindow test

 

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值