【移动应用开发技术】Android如何实现自定义dialog_第1页
【移动应用开发技术】Android如何实现自定义dialog_第2页
【移动应用开发技术】Android如何实现自定义dialog_第3页
【移动应用开发技术】Android如何实现自定义dialog_第4页
【移动应用开发技术】Android如何实现自定义dialog_第5页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

【移动应用开发技术】Android如何实现自定义dialog

这篇文章主要介绍了Android如何实现自定义dialog,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让在下带着大家一起了解一下。Android自定Dialog先上效果图:1.先在drawable下新建一个drawbleresourcefile,这个文件用于dialog的圆角背景<?xml

version="1.0"

encoding="utf-8"?>

2.在layout下新建一个xml文件,这个布局的背景使用刚刚定义的drawable文件,android:background="@drawable/建的drawable文件"

<?xml

version="1.0"

encoding="utf-8"?>

<TextView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="操作遥控器"

android:textColor="#585858"

android:textSize="25dp"

android:gravity="center"

/>

<TextView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_margin="5dp"

android:textColor="#585858"

android:text="按开关/模式/温度加减任意一键学习"

android:textSize="20dp"

android:gravity="center"

/>

<LinearLayout

android:layout_width="match_parent"

android:layout_height="140dp"

android:orientation="horizontal"

android:padding="10dp"

>

<Button

android:layout_width="100dp"

android:layout_height="wrap_content"

android:background="@mipmap/yaokong"

android:layout_marginLeft="35dp"

/>

<!--<ImageView-->

<!--android:layout_width="100dp"-->

<!--android:layout_height="wrap_content"-->

<!--android:src="@mipmap/yaokong"-->

<!--android:layout_marginLeft="35dp"-->

<!--/>-->

<LinearLayout

android:layout_width="150dp"

android:layout_height="wrap_content"

android:orientation="vertical"

android:layout_marginLeft="15dp"

android:layout_marginBottom="5dp"

>

<ImageView

android:layout_width="wrap_content"

android:layout_height="90dp"

android:src="@mipmap/xuanhuang"

/>

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center"

android:text="等待学习按键..."

android:textColor="#585858"

android:textSize="20dp"

/>

</LinearLayout>

</LinearLayout>

<LinearLayout

android:id="@+id/yaokongCancel"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

>

<View

android:layout_width="match_parent"

android:layout_height="1px"

android:layout_marginTop="1dp"

android:background="#8d8d8f"

/>

<TextView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:gravity="center"

android:layout_marginTop="8dp"

android:textColor="#1196db"

android:textSize="25dp"

android:text="取消"

/>

</LinearLayout>3.在values的styles设置dialog样式4.之后去显示package

com.example.atry.test;

import

android.app.Dialog;

import

android.content.Context;

import

android.os.Bundle;

import

android.support.v7.app.ActionBar;

import

android.support.v7.app.AppCompatActivity;

import

android.view.LayoutInflater;

import

android.view.View;

import

android.widget.LinearLayout;

public

class

tianjiayaokong

extends

AppCompatActivity

{

//

这个为点击显示dialog的布局

private

LinearLayout

kongtiaol;

//

dialog中的取消

private

LinearLayout

yaokongCancel;

@Override

protected

void

onCreate(Bundle

savedInstanceState)

{

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_tianjiayaokong);

ActionBar

actionBar

=

getSupportActionBar();

if(actionBar

!=

null)

{

actionBar.hide();

}

kongtiaol

=

findViewById(R.id.kongtiaol);

kongtiaol.setOnClickListener(new

View.OnClickListener()

{

@Override

public

void

onClick(View

view)

{

showDialog();

}

});

}

/**

*

显示dialog

*/

private

void

showDialog()

{

LayoutInflater

inflater

=

getLayoutInflater();

//通过inflate加载出自定义布局

View

view

=

inflater.inflate(R.layout.activity_dialog_componet,null);

final

Dialog

dialog

=

new

Dialog(this,R.style.custom_dialog);

dialog.setContentView(view);

yaokongCancel

=

view.findViewB

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论