iis服务器助手广告广告
返回顶部
首页 > 资讯 > 移动开发 >Android编程实现Dialog窗体监听的方法
  • 553
分享到

Android编程实现Dialog窗体监听的方法

监听方法dialogAndroid 2022-06-06 11:06:59 553人浏览 薄情痞子
摘要

本文实例讲述了Android编程实现Dialog窗体监听的方法。分享给大家供大家参考,具体如下: 今天做了一个Dialong窗体监听包括窗体内的xml监听。 效果图: tes

本文实例讲述了Android编程实现Dialog窗体监听的方法。分享给大家供大家参考,具体如下:

今天做了一个Dialong窗体监听包括窗体内的xml监听。

效果图:

test.class代码


package com.test;
import Android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.os.Bundle;
import android.text.Layout;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;
public class test extends Activity implements OnClickListener {
  private ImageButton button=null;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    button=(ImageButton)findViewById(R.id.button);
    //监听
    button.setOnClickListener(this);
  }
  @Override
  public void onClick(View v) {
    windows();
  }
  private void Windows() {
  //接受一些参数如:图片,标题,正文
  AlertDialog.Builder builder;
  AlertDialog alertDialog;
  //加载和访问资源
  Context mContext =test.this;
  //通过LayoutInlater得到上面xml布局的View view
  LayoutInflater inflater =
  (LayoutInflater)mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
  View layout =inflater.inflate(R.layout.custom_dialog,null);
  //绑定test和image
  TextView text=(TextView)layout.findViewById(R.id.text);
  text.setText("hello");
  Button b =(Button)layout.findViewById(R.id.b);
  b.setText("butto");
  b.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
      System.out.println("123");
    }
  });
  ImageView image=(ImageView)layout.findViewById(R.id.image);
  //取出系统自带的图片
  image.setImageResource(R.drawable.icon);
  //加载
  builder = new AlertDialog.Builder(mContext);
  builder.setView(layout);
  //创建目标,这里创建相应的AlertDialog
//  alertDialog = builder.create();
  //弹出窗口
  builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog,
     int which) {
    }
    }).setNegativeButton("取消",
    new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog,
     int which) {
     dialog.cancel();
    }
    }).create();
  builder.show();
  }
}

custom_dialog.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:padding="10dp"
    >
 <ImageView android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_marginRight="10dp"
    />
 <TextView android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:textColor="#FFF"
    />
    <Button android:id="@+id/b"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    />
</LinearLayout>

main.xml代码


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
<TextView
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/hello"
  />
  <ImageButton
  android:id="@+id/button"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background="#000000"
  android:src="@drawable/icon"
  />
</LinearLayout>

结尾:由于要用到两个xml所以这里有两个xml的代码,一个是点击按钮的xml代码,一个窗体里面的xml布局带

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android多媒体操作技巧汇总(音频,视频,录音等)》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

您可能感兴趣的文章:Android中AlertDialog各种对话框的用法实例详解Android入门之AlertDialog用法实例分析Android使用自定义alertdialog实现确认退出按钮Android中AlertDialog的六种创建方式Android AlertDialog自定义样式实现代码Android中阻止AlertDialog关闭实例代码Android仿iOS自定义AlertDialog提示框Android AlertDialog对话框用法示例Android使用AlertDialog实现的信息列表单选、多选对话框功能Android开发实现AlertDialog中View的控件设置监听功能分析


--结束END--

本文标题: Android编程实现Dialog窗体监听的方法

本文链接: https://www.lsjlt.com/news/28320.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作