(一)Dialog简介
成都创新互联公司主营绍兴网站建设的网络公司,主营网站建设方案,App定制开发,绍兴h5重庆小程序开发搭建,绍兴网站营销推广欢迎绍兴等地区企业咨询Dialog是Android开发中需要经常使用的系统组件之一,AlertDialog可以显示一个、两个等多个按钮,使用setMessage()方法可以只显示字符串提示信息,当然用户也可以自定义自己的AlertDialog。
构造方法
更改主题
2. 常用方法
(二)代码实现
MainActivity代码
package com.example.mydialog; import java.util.ArrayList; import java.util.HashMap; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.widget.ListAdapter; import android.widget.SimpleAdapter; public class MainActivity extends Activity { private ArrayList<HashMap<String, Object>> listItem; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); openDialog(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } public void openDialog() { new AlertDialog.Builder(MainActivity.this).setTitle("自定义Dialog") .setIcon(R.drawable.albums) .setAdapter(getAdaper(), new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub // 获取选中项的内容 Log.d("测试", listItem.get(which).get("ItemManager") .toString()); } }).show(); } public ListAdapter getAdaper() { listItem = new ArrayList<HashMap<String, Object>>(); HashMap<String, Object> map1 = new HashMap<String, Object>(); map1.put("ImageManager", R.drawable.compose); map1.put("ItemManager", "录入"); listItem.add(map1); HashMap<String, Object> map2 = new HashMap<String, Object>(); map2.put("ImageManager", R.drawable.camera); map2.put("ItemManager", "拍照"); listItem.add(map2); HashMap<String, Object> map4 = new HashMap<String, Object>(); map4.put("ImageManager", R.drawable.delete1); map4.put("ItemManager", "删除"); listItem.add(map4); SimpleAdapter listItemAdapter = new SimpleAdapter(this, listItem, R.layout.mydialog, new String[] { "ImageManager", "ItemManager" }, new int[] { R.id.p_w_picpath, R.id.text }); return listItemAdapter; } } mydialog.xml文件 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal" android:gravity="center_vertical" > <ImageView android:id="@+id/p_w_picpath" android:layout_width="38dp" android:layout_height="38dp" /> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical ="true" android:textColor="#000000" /> </RelativeLayout>
效果如下:
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
本文题目:Android之自定义AlertDialog的实现方法(一)-创新互联
当前URL:https://www.cdcxhl.com/article44/cddehe.html
成都网站建设公司_创新互联,为您提供网站设计公司、商城网站、网站内链、App设计、营销型网站建设、ChatGPT
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联