这篇文章将为大家详细讲解有关Android中怎么自定义弹出对话框,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
在五寨等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供网站设计制作、成都网站设计 网站设计制作定制网站建设,公司网站建设,企业网站建设,成都品牌网站建设,全网营销推广,成都外贸网站建设,五寨网站建设费用合理。
1、首先新建一个xml文件,这里以设置音效开关为例
myview.xml如下:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@+id/toggleButton1" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:text="@string/voice" android:textSize="20sp" /> <ToggleButton android:id="@+id/toggleButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_toRightOf="@+id/textView1" android:text="ToggleButton" android:textOff="OFF" android:textOn="ON" /> </RelativeLayout>
2、在代码中调用自定义视图
public void setSound(){ // 取得自定义View LayoutInflater layoutInflater = LayoutInflater.from(MainActivity.instance); //MainActivity.instance是在MainActivity.java中定义的,public static MainActivity instance; View myLoginView = layoutInflater.inflate(R.layout.myview, null); myToggleButton = (ToggleButton)myLoginView.findViewById(R.id.toggleButton1); if(audio_on){ myToggleButton.setChecked(true); }else{ myToggleButton.setChecked(false); } Dialog alertDialog = new AlertDialog.Builder(MainActivity.instance) .setTitle("设置") .setView(myLoginView) .setIcon(android.R.drawable.ic_dialog_info) .setPositiveButton("确定",new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub if(myToggleButton.isChecked()){ audio_on = true; }else{ audio_on = false; } } }). create(); alertDialog.show(); }
关于Android中怎么自定义弹出对话框就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
本文题目:Android中怎么自定义弹出对话框
网页链接:https://www.cdcxhl.com/article20/peppjo.html
成都网站建设公司_创新互联,为您提供面包屑导航、微信公众号、企业网站制作、虚拟主机、定制网站、移动网站建设
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联