zoukankan      html  css  js  c++  java
  • 自定义Dialog,两种方式

    package com.example.alertdialog;
    
    import android.os.Bundle;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.view.Window;
    import android.view.WindowManager;
    import android.widget.Button;
    import android.widget.TextView;
    import android.app.Activity;
    import android.app.AlertDialog;
    
    public class MainActivity extends Activity {
    
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_main);
    		
    	    final AlertDialog dialog=new AlertDialog.Builder(this).create();
    	    View dialogview=LayoutInflater.from(this).inflate(R.layout.newdialogxml, null);
    		dialog.setView(dialogview);
    		dialog.setTitle("自定义Dialog1");
    		((Button)(findViewById(R.id.action_settings))).setOnClickListener(new OnClickListener() {
    			
    			@Override
    			public void onClick(View v) {
    				// TODO Auto-generated method stub
    				dialog.show();
    			}
    		});
    		((Button)(dialogview.findViewById(R.id.button))).setOnClickListener(new OnClickListener() {
    			
    			@Override
    			public void onClick(View v) {
    				// TODO Auto-generated method stub
    				dialog.cancel();
    			}
    		});
    		
    		((Button)(findViewById(R.id.action_settings2))).setOnClickListener(new OnClickListener() {
    			
    			@Override
    			public void onClick(View v) {
    				// TODO Auto-generated method stub
    				ShowDialogtwo();
    			}
    
    			private void ShowDialogtwo() {
    				// TODO Auto-generated method stub
    				final AlertDialog dialog=new AlertDialog.Builder(MainActivity.this).create();
    				dialog.show();
    				Window window=dialog.getWindow();
    				/*
    				 * getwindow后背景会变成灰色,此3行代码给背景相当于给了给透明色
    				 * */
    	            WindowManager.LayoutParams params = window.getAttributes();  
    	            params.dimAmount = 0f;  
    	            window.setAttributes(params);  
    	            
    				window.setContentView(R.layout.newdialogxml);
    				window.setTitle("自定义Dialog2");
    				
    				
    				((Button)(window.findViewById(R.id.button))).setOnClickListener(new OnClickListener() {
    					
    					@Override
    					public void onClick(View v) {
    						// TODO Auto-generated method stub
    						dialog.cancel();
    					}
    				});
    				
    			}
    		});
    			
    	}
    
    	
    
    }
    

      

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
        
    <TextView 
        android:gravity="center"
        android:layout_gravity="center_vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="这是一个自定义dialog"/>
    <Button
        android:id="@+id/button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="取消"/>
    </LinearLayout>
    

      

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
    	 android:orientation="vertical">
    
        <Button
            android:id="@+id/action_settings"
            android:gravity="center"
            android:layout_gravity="center"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="查看自定义Dialog1" />
            <Button
            android:id="@+id/action_settings2"
            android:gravity="center"
            android:layout_gravity="center"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="查看自定义Dialog2" />
    
    </LinearLayout>
    

      

  • 相关阅读:
    bootstrap入门基础
    java遇见的问题分析
    蓝桥杯练习
    win7 在文件夹上右键后 以管理员启动命令窗口
    渲染10万条数据的性能问题
    闲聊一下百度的Unit
    利用c# 多屏显示
    学习Xposed --记WX功能分析的过程
    从零开始打jar包--补充
    修改windows7 的管理员密码
  • 原文地址:https://www.cnblogs.com/androidxufeng/p/3615747.html
Copyright © 2011-2022 走看看