当前位置:  开发笔记 > Android > 正文

如何在按钮点击时调用或弹出片段

如何解决《如何在按钮点击时调用或弹出片段》经验,为你挑选了1个好方法。

我实现了一个Android应用程序.我想在评级按钮点击时调用或弹出片段.

例如,这里我附上了截图.当我点击率按钮时,如何调用这样的弹出窗口或片段

在此输入图像描述

在此输入图像描述

请帮我怎么称这些片段?



1> Anu..:

您需要设计另一个布局,仅用于显示弹出窗口并使其成为alignparenttop.这是示例布局

创建新的xml文件dialog.xml



    

        


    


一旦你创建了你的设计.你需要在你的onbutton点击中调用它.以下是显示对话的示例

ratingButton.setOnCLickListener(new view.OnCLickListener(){ 
    @Override 
    public void onCLick(View v){
         final Dialog fbDialogue = new Dialog(ProfileActivity.this, android.R.style.Theme_Black_NoTitleBar);
            fbDialogue.getWindow().setBackgroundDrawable(new ColorDrawable(Color.argb(100, 0, 0, 0)));
            fbDialogue.setContentView(R.layout.facebook_dialogue);
            fbDialogue.setCancelable(true);
            fbDialogue.show();
    } 
}); 


    Hey I have put the code in onclicklistener. Check it . The above code works perfectly fine for me. As per my requirement I wanted the dialogue on the bottom of the screen . I have just made few lines of code change above to meet your requirement. My requirement was something like this   

在此输入图像描述

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有