Android:分享应用弹出窗口

时间:2011-07-14 15:38:57

标签: android popup share

我想知道当你在我的应用程序中选择一个应用程序时,是否有一种方法可以获得与Android“App Sharing”菜单相同的菜单。所以我会有一个按钮监听点击,一旦点击它将运行sharepopup();

或者可以在我的应用程序中调用“App Sharing”应用程序吗?

谢谢!

编辑:我找到了答案here

1 个答案:

答案 0 :(得分:1)

我认为应用弹出式广告只是样式为AlertDialog的项目:

    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setTitle("Popup");
    final CharSequence[] items = {"item A", "Item b"};
     builder.setItems(items, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int item) {
           switch(Item){
            /////Do stuff;
           }
        }
    }).show();