Android 控件 - Notification通知、Toolbar、AlertDiallog、PopupWindow

1、Notification通知

创建一个NotificationManager
NotificationManager类是一个通知管理器类,这个对象是由系统维护的服务,是以单例模式的方式获得,所以一般并不直接实例化这个对象。在Activity中,可以使用Activity.getSystemService(String)方法获取NotificationManager对象,Activity.getSystemService(String)方法可以通过Android系统级服务的句柄,返回对应的对象。在这里需要返回NotificationManager,所以直接传递Context.NOTIFICATION_SERVICE即可。

使用Builder构造器来创建Notification 对象
使用NotificationCompat类的Builder构造器来创建Notification对象,可以保证程序在所有的版本上都能正常工作。Android8.0新增了通知渠道这个概念,如果没有设置,则通知无法在Android8.0的机器上显示。

1.1、res/layout 中文件

activity_main.xml 中设置两个按钮

<?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="match_parent"android:orientation="vertical"><Buttonandroid:id="@+id/send_notification"android:text="发出通知"android:layout_width="wrap_content"android:layout_height="wrap_content"/><Buttonandroid:id="@+id/cancel_notification"android:text="取消通知"android:layout_width="wrap_content"android:layout_height="wrap_content"/></LinearLayout>

activity_notification.xml 为空页面

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".NotificationActivity"></androidx.constraintlayout.widget.ConstraintLayout>

1.2、Activity java代码

MainActivity 中设置点击事件

public class MainActivity extends AppCompatActivity {private NotificationManager manager;private Notification notification;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);//  Builder 的 channelId 是8.0之后才有的,所以需要做一下版本判断if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){// 第一个参数:id 需要与 NotificationCompat.Builder 中的channelId一致// 第二个参数:点击通知时可以看到   第三个参数:通知等级NotificationChannel channel = new NotificationChannel("wang", "测试通知,没在通知中看到这个字段",NotificationManager.IMPORTANCE_HIGH);manager.createNotificationChannel(channel);}// 获取 pendingIntent,设置点击通知后,跳转到NotificationActivity页面Intent intent = new Intent(this, NotificationActivity.class);PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);notification = new NotificationCompat.Builder(this, "wang").setContentTitle("官方通知")  // 标题.setContentText("我是提示内容")  // 内容.setSmallIcon(R.drawable.ic_baseline_person_24) // 设置图片,不能是彩色.setColor(Color.parseColor("#ff0000")) // ic_baseline_person_24 图标的颜色.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.test)) // 设置大图标,可以是彩色图片.setContentIntent(pendingIntent)  // 点击通知跳转到哪里.setAutoCancel(true)  // 点击后通知清除
//                .setWhen(111111111)  // 设置通知被创建的时间,不设置默认是当前时间,一般不用.build();Button send_notification = findViewById(R.id.send_notification);Button cancel_notification = findViewById(R.id.cancel_notification);send_notification.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {// 发通知manager.notify(1, notification);}});cancel_notification.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {// 清除通知manager.cancel(1);}});}
}

NotificationActivity 中设置log打印,当点击通知时打印log

public class NotificationActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_notification);Log.e("Blake", "进入NotificationActivity");}
}

在这里插入图片描述
在这里插入图片描述

2、Toolbar

2.1、取消默认的Toolbar

在 res/values/themes.xml 文件中,将DarkActionBar 修改为 NoActionBar

<style name="Theme.Demo01" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
改为:
<style name="Theme.Demo01" parent="Theme.MaterialComponents.DayNight.NoActionBar">

在这里插入图片描述
在这里插入图片描述

2.2、Toolbar常用属性

background:背景颜色
layout_width: 宽度
layout_height: 高度
app:navigationIcon: 设置左上角的返回图标
app:title: 设置标题
app:titleTextColor: 标题文本的颜色
app:titleMarginStart: 标题距离左边的距离
app:subtitle: 设置子标题
app:subtitleTextColor: 设置子标题的颜色
app:logo: 设置logo

<?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="match_parent"xmlns:app="http://schemas.android.com/apk/res-auto"android:orientation="vertical"><androidx.appcompat.widget.Toolbarandroid:id="@+id/tb"android:background="#ffff00"app:navigationIcon="@drawable/ic_baseline_arrow_back_24"app:title="标题"app:titleTextColor="#ff0000"app:titleMarginStart="90dp"app:subtitle="子标题"app:subtitleTextColor="#00ffff"app:logo="@mipmap/ic_launcher"android:layout_width="match_parent"android:layout_height="?attr/actionBarSize"/><androidx.appcompat.widget.Toolbarandroid:id="@+id/tb2"android:layout_marginTop="10dp"android:background="#ffff00"android:layout_width="match_parent"android:layout_height="?attr/actionBarSize"/><!-- 设置标题居中显示   --><androidx.appcompat.widget.Toolbarapp:navigationIcon="@drawable/ic_baseline_arrow_back_24"android:layout_marginTop="10dp"android:background="#ffff00"android:layout_width="match_parent"android:layout_height="?attr/actionBarSize"><TextViewandroid:layout_gravity="center"android:text="标题"android:layout_width="wrap_content"android:layout_height="wrap_content"/></androidx.appcompat.widget.Toolbar>
</LinearLayout>
package com.example.mytoolbar;import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;import android.os.Bundle;
import android.util.Log;
import android.view.View;public class MainActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Toolbar toolbar = findViewById(R.id.tb);toolbar.setNavigationOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {Log.e("Blake", "toolbar被点击了");}});Toolbar toolbar2 = findViewById(R.id.tb2);// 设置返回图标toolbar2.setNavigationIcon(R.drawable.ic_baseline_arrow_back_24);// 设置标题toolbar2.setTitle("标题");// 设置点击事件toolbar2.setNavigationOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {Log.e("Blake", "toolbar222被点击了");}});}
}

在这里插入图片描述

3、AlertDiallog

res/layout/activity_main.xml

<?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="match_parent"android:orientation="vertical"><Buttonandroid:id="@+id/btn"android:text="显示对话框"android:layout_width="wrap_content"android:layout_height="wrap_content"/>
</LinearLayout>

res/layout/dialog_view.xml 设置dialog的自定义布局

<?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="match_parent"android:background="#ffff00"android:orientation="horizontal"><ImageViewandroid:src="@mipmap/ic_launcher"android:layout_width="wrap_content"android:layout_height="wrap_content"/><TextViewandroid:text="天气很好"android:layout_width="wrap_content"android:layout_height="wrap_content"/>
</LinearLayout>

设置dialog内容和按钮

package com.example.myalertdialog;import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;import android.content.DialogInterface;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;public class MainActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Button btn = findViewById(R.id.btn);AlertDialog.Builder builder = new AlertDialog.Builder(this);btn.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {View dialogView = getLayoutInflater().inflate(R.layout.dialog_view, null);builder.setIcon(R.mipmap.ic_launcher)  // 设置icon.setTitle("我是对话框")  // 标题.setMessage("hello world")  // 内容.setView(dialogView) // 设置自定义布局.setPositiveButton("确定", new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialog, int which) {Log.e("Blake", "确定 button");}}).setNegativeButton("取消", new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialog, int which) {Log.e("Blake", "取消 button");}}).setNeutralButton("中间", new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialog, int which) {Log.e("Blake", "中间 button");}}).create() // 创建.show();  // 显示}});}
}

在这里插入图片描述

4、PopupWindow

https://www.bilibili.com/video/BV13y4y1E7pF?p=14
res/layout/activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"xmlns:android="http://schemas.android.com/apk/res/android"><Buttonandroid:id="@+id/btn"android:text="弹出popupwindow"android:layout_width="wrap_content"android:layout_height="wrap_content"/></LinearLayout>

res/layout/popup_view.xml 弹出页面

<?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="match_parent"android:background="@mipmap/ic_launcher"android:orientation="vertical"><Buttonandroid:id="@+id/btn1"android:padding="5dp"android:text="上海"android:textSize="18sp"android:layout_width="wrap_content"android:layout_height="wrap_content"/><Buttonandroid:id="@+id/btn2"android:padding="5dp"android:text="北京"android:textSize="18sp"android:layout_width="wrap_content"android:layout_height="wrap_content"/>
</LinearLayout>

MainActivity

package com.example.mypopupwindow;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.PopupWindow;public class MainActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Button btn = findViewById(R.id.btn);btn.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {View popupView = getLayoutInflater().inflate(R.layout.popup_view, null);// PopupWindow 参数1 View是显示的内容,参数2、3是宽高,可以写死为整数,也可以设置为WRAP_CONTENT自适应PopupWindow popupWindow = new PopupWindow(popupView, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);popupWindow.showAsDropDown(v);}});}
}

在这里插入图片描述

https://www.bilibili.com/video/BV13y4y1E7pF?p=11
https://www.bilibili.com/video/BV13y4y1E7pF?p=12
https://www.bilibili.com/video/BV13y4y1E7pF?p=13
https://www.bilibili.com/video/BV13y4y1E7pF?p=14

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/518050.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

阿里云 ESSD 采用自研新一代存储网络协议,打造“超级高速”

8月26日&#xff0c;阿里云透露&#xff0c;正投入自研数据存储“超级高速”&#xff0c;核心存储产品ESSD已率先采用这一最新的自研存储网络协议&#xff0c;并实现大规模商用&#xff0c;数据传输效率提高50%。 据了解&#xff0c;未来该协议还将继续演进&#xff0c;有望取…

1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contai

文章目录1. 现象2. docker内部mysql容器 解决方案3. windows和linux 解决方案1. 现象 在使用sql语句创建表时&#xff0c;报错&#xff1a; 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column ‘information_schema.PRO…

10 人,2 个月 | 虾米音乐的监控体系升级之路

背景 监控一直是服务端掌握应用运行状态的重要手段&#xff0c;经过近几年的发展&#xff0c;阿里虾米服务端目前已经有 100 多个 Java 应用&#xff0c;承担核心业务的应用也有将近 50 个&#xff0c;对于应用的监控配置也是因人而异。有的人配置的监控比较细&#xff0c;有的…

Python 本身真的没什么用!

越来越多的人学习编程不再只是为了当程序员&#xff0c;而是为了提升效率&#xff0c;多一份职业技能&#xff0c;正面应对瞬息万变的全球大环境。据麦肯锡全球研究院发布的一份就业报告中显示&#xff0c;到 2030 年&#xff0c;中国预计将有 1200 万&#xff5e; 1.02 亿人面…

Timestream开发最佳实践

背景 Timestream模型是针对时序场景设计的特有模型&#xff0c;可以让用户快速完成业务代码的开发&#xff0c;实现相关业务需求。但是&#xff0c;如果业务系统不仅想实现基础的相关业务功能&#xff0c;还要达到最佳的性能&#xff0c;并且兼顾到未来的扩展性的话&#xff0…

linux-ubuntu-16.04 安装系统、安装 SSH 服务、设置root用户密码

1、ubuntu-16.04安装 使用UltraISO 软碟通 将 ubuntu-16.04-desktop-amd64.iso 制作为U盘镜像插入U盘&#xff0c;开机按F12选择U盘启动安装过程参考 https://blog.csdn.net/weixin_59605625/article/details/125807363 2、ubuntu-16.04 安装 SSH 服务 $ 在linux中代表普通用…

Error starting userland proxy: listen tcp 0.0.0.0:8080: bind: address already in use.

文章目录一、现象二、解决方案一、现象 [rootlocalhost app]# docker run -p 8080:8080 -p 9326:9326 --name eblog --link es_643:ees --link myrabbit:erabbit --link mymysql:emysql --link myredis:eredis -d eblog:1.0a74c2caaca88203c1ca575cd2f8a0e0426d892d5800c487…

助力企业应用与基础架构现代化 VMware这波组合拳够强!

顺应时代的发展&#xff0c;“数字化转型”已经成为企业发展的必由之路。应用作为数字化转型的核心&#xff0c;能够帮助企业向客户提供定制化的数字化体验&#xff0c;创造新的收入来源。在数字化转型道路上&#xff0c;中国企业走的并不慢甚至非常之快&#xff0c;在此过程中…

应用架构的核心使命是什么?阿里高级技术专家这样说

阿里妹导读&#xff1a;什么是架构&#xff1f;关于架构这个概念很难给出一个明确的定义&#xff0c;也没有一个标准的定义。如果&#xff0c;硬是要给一个概述&#xff0c;阿里巴巴高级技术专家张建飞认为架构就是对系统中的实体以及实体之间的关系所进行的抽象描述。今天&…

2分钟学会Docker部署SpringBoot项目

文章目录一、安装docker1. 在线安装docker2. 换镜像源二、安装redis三、安装mysql四、安装RabbitMq五、安装ElasticSearch5.1. 修改服务器配置5.2. 创建容器并启动 ES5.3. 查看启动日志5.4. 进入镜像5.5. 修改cluster-name5.6. 安装中文分词插件5.7. 退出并重启镜像5.8. 查看启…

linux-ubuntu-16.04 安装 java8、 firewalld、 mysql5.7、Redis 5.0.3、FastDFS、nginx1.18

1、安装java 新建jdk目录 cd /usr/local mkdir java下载JDK8上传到java目录下&#xff0c;解压文件 cd java tar -zxvf jdk-8u201-linux-x64.tar.gz链接&#xff1a;https://pan.baidu.com/s/155P1Y5YetBD0E4PhcPgNfg 提取码&#xff1a;z27j 配置环境变量 vi /etc/profi…

K8s 学习者绝对不能错过的最全知识图谱(内含 56个知识点链接)

导读&#xff1a;Kubernetes 作为云原生时代的“操作系统”&#xff0c;熟悉和使用它是每名用户的必备技能。本篇文章概述了容器服务 Kubernetes 的知识图谱&#xff0c;部分内容参考了网上的知识图谱&#xff0c;旨在帮助用户更好的了解 K8s 的相关知识。 1. 概述 容器服务 …

利用 Docker 在不同宿主机做 CentOS 系统容器 | 原力计划

作者 | 于先森2017责编 | 伍杏玲出品 | CSDN博客最近公司新接到一个项目&#xff0c;惯例是通过技术架构、业务需求、用户量还有以往的经验大概评估出一份资源配置表格提供给客户&#xff0c;让客户参考采购的服务器资源。但这次客户根本没有根据我们提供的参考表格来&#xff…

编程界的“二向箔”——Dart元编程

阅读过《三体》的同学肯定知道“降维打击”&#xff0c;从更高维度看问题&#xff0c;直接将对手KO。今天我们闲聊一下编程界的“二向箔”——元编程。 1. 什么是元编程 我们听过了太多太多的名词&#xff0c;耳朵似乎都有点名词麻痹症了。比如&#xff0c;有些名词为了装x&a…

在线安装docker

文章目录一、安装docker1. 在线安装docker2. 换镜像源一、安装docker 1. 在线安装docker #安装 yum install docker#检验安装是否成功 [rootlocalhost opt]# docker --version Docker version 1.13.1, build 7f2769b/1.13.12. 换镜像源 sudo vim /etc/docker/daemon.json 内…

linux-ubuntu-22.04 安装 java8、 firewalld、 mysql5.7、Redis 6.0、FastDFS、nginx1.18

1、安装java 可参考ubuntu-16.04&#xff0c;没区别 https://blog.csdn.net/qq_38959934/article/details/126101028 2、安装 firewalld 可参考ubuntu-16.04&#xff0c;没区别 https://blog.csdn.net/qq_38959934/article/details/126101028 3、安装 mysql5.7 apt-get in…

车联网服务non-RESTful架构改造实践

导读 在构建面向企业项目、多端的内容聚合类在线服务API设计的过程中&#xff0c;由于其定制特点&#xff0c;采用常规的restful开发模式&#xff0c;通常会导致大量雷同API重复开发的窘境&#xff0c;本文介绍一种GraphQL查询语言网关编排联合的实践&#xff0c;解决大量重复…

为什么铺天盖地都是 Python 的广告?

最近&#xff0c;知乎关于Python有一个热议问题&#xff1a; 甚至在抖音上&#xff0c;笔者有一次还看到Python占领了热搜&#xff01;应该有很多不懂技术的吃瓜群众也被Python的热度炒懵了……但是&#xff0c;Python真的值得学吗&#xff1f;真的值得花这么多钱去学吗&#x…

Spring 社区的唯一一个国产开源项目 - Spring Cloud Alibaba 毕业了

阿里妹导读&#xff1a;一年多前&#xff0c;Java 界最近发生了一件大事&#xff0c;阿里开源 Spring Cloud Alibaba&#xff0c;并推出首个预览版。Spring Cloud 本身是一套微服务规范&#xff0c;并不是一个拿来即可用的框架&#xff0c;而 Spring Cloud Alibaba 的开源为开发…

一个系统,搞定闲鱼服务端复杂问题告警-定位-快速处理

服务端问题排查对开发而言是家常便饭&#xff0c;问题并不可怕但要花大量时间去处理&#xff1b;另一方面故障的快速解决至关重要。 目前问题排查最大的障碍是什么呢&#xff1f;我们认为有以下几个原因&#xff1a; 大量的告警信息。链路的复杂性。排查过程繁复。依赖经验。…