显示android设备所以已安装App 可点击启动、搜索

 app名称*表示此app是系统应用,复制到项目后清单文件注册便可启动,此activity无需任何xml文件。

android 11系统以上清单需要配置以下权限:

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
 

package com.apples.myapplication6;import android.app.Activity;
import android.app.ProgressDialog;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.os.Bundle;
import android.text.Editable;
import android.text.SpannableStringBuilder;
import android.text.Spanned;
import android.text.TextWatcher;
import android.text.style.ForegroundColorSpan;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;import androidx.annotation.NonNull;
import androidx.appcompat.app.AlertDialog;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;public class AppListActivity2 extends Activity {private PackageManager packageManager;private List<ApplicationInfo> appInfoList;private List<ApplicationInfo> filteredAppList;private AppListAdapter adapter;@SuppressWarnings("all")private static View spaceView;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);LinearLayout rootLayout = new LinearLayout(this);rootLayout.setLayoutParams(new ViewGroup.LayoutParams(-1, -1));rootLayout.setOrientation(LinearLayout.VERTICAL);LinearLayout headerLayout = new LinearLayout(this);headerLayout.setOrientation(LinearLayout.HORIZONTAL);LinearLayout.LayoutParams params3 = new LinearLayout.LayoutParams(-1, -2);rootLayout.addView(headerLayout, params3);final EditText searchEditText = new EditText(this);searchEditText.setHint("Search apps");searchEditText.addTextChangedListener(new TextWatcher() {@Overridepublic void beforeTextChanged(CharSequence s, int start, int count, int after) {}@Overridepublic void onTextChanged(CharSequence s, int start, int before, int count) {filterApps(s.toString());}@Overridepublic void afterTextChanged(Editable s) {}});LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(0, -2, 2);headerLayout.addView(searchEditText, params);spaceView = new View(this);spaceView.setBackgroundColor(Color.parseColor("#F6F6F6"));spaceView.setOnClickListener(v -> {View view2 = AppListActivity2.this.getCurrentFocus();if (view2 != null) {InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);imm.hideSoftInputFromWindow(view2.getWindowToken(), 0);}});LinearLayout.LayoutParams params0 = new LinearLayout.LayoutParams(0, -1, 0.36f);headerLayout.addView(spaceView, params0);Button allBtn = new Button(this);allBtn.setText("App数量");allBtn.setOnClickListener(v -> {Toast.makeText(this, "列表共有:" + filteredAppList.size(), Toast.LENGTH_LONG).show();});LinearLayout.LayoutParams params4 = new LinearLayout.LayoutParams(0, -1, 0.5f);headerLayout.addView(allBtn, params4);Button refreshBtn = new Button(this);refreshBtn.setText("刷新");refreshBtn.setOnClickListener(v -> {spaceView.callOnClick();searchEditText.getText().clear();loadInstalledAppsAsync();});LinearLayout.LayoutParams params5 = new LinearLayout.LayoutParams(0, -1, 0.5f);headerLayout.addView(refreshBtn, params5);RecyclerView recyclerView = new RecyclerView(this);recyclerView.setLayoutManager(new LinearLayoutManager(this));LinearLayout.LayoutParams params2 = new LinearLayout.LayoutParams(-1, -1);rootLayout.addView(recyclerView, params2);setContentView(rootLayout);packageManager = getPackageManager();appInfoList = new ArrayList<>();filteredAppList = new ArrayList<>();adapter = new AppListAdapter();recyclerView.setAdapter(adapter);loadInstalledAppsAsync();}@SuppressWarnings("all")private void filterApps(String query) {filteredAppList.clear();if (query.isEmpty()) {filteredAppList.addAll(appInfoList);} else {for (ApplicationInfo appInfo : appInfoList) {String appName = packageManager.getApplicationLabel(appInfo).toString().toLowerCase();String packageName = appInfo.packageName;if (appName.contains(query.toLowerCase()) || packageName.contains(query.toLowerCase())) {filteredAppList.add(appInfo);}}}adapter.notifyDataSetChanged();}private void loadInstalledAppsAsync() {new LoadInstalledAppsTask().execute();}@SuppressWarnings("all")private class LoadInstalledAppsTask extends AsyncTask<Void, Void, List<ApplicationInfo>> {private ProgressDialog progressDialog;@Overrideprotected void onPreExecute() {super.onPreExecute();progressDialog = ProgressDialog.show(AppListActivity2.this, null, "加载中……");progressDialog.setCanceledOnTouchOutside(false);progressDialog.setCancelable(false);}@Overrideprotected List<ApplicationInfo> doInBackground(Void... voids) {List<ApplicationInfo> installedApps = packageManager.getInstalledApplications(PackageManager.GET_META_DATA);List<ApplicationInfo> appList = new ArrayList<>();List<ApplicationInfo> systemAppList = new ArrayList<>();List<ApplicationInfo> userAppList = new ArrayList<>();String thatApp = AppListActivity2.this.getPackageName();ApplicationInfo tmpInfo = null;for (ApplicationInfo appInfo : installedApps) {if (thatApp.equals(appInfo.packageName)) {tmpInfo = appInfo;continue;}if (isSystemPackage(appInfo)) {systemAppList.add(appInfo);} else {userAppList.add(appInfo);}}Collections.sort(userAppList, new Comparator<ApplicationInfo>() {@Overridepublic int compare(ApplicationInfo applicationInfo, ApplicationInfo t1) {String aa = packageManager.getApplicationLabel(applicationInfo).toString();String bb = packageManager.getApplicationLabel(t1).toString();return aa.compareTo(bb);}});appList.addAll(userAppList);Collections.sort(systemAppList, new Comparator<ApplicationInfo>() {@Overridepublic int compare(ApplicationInfo applicationInfo, ApplicationInfo t1) {String aa = packageManager.getApplicationLabel(applicationInfo).toString();String bb = packageManager.getApplicationLabel(t1).toString();return aa.compareTo(bb);}});appList.addAll(systemAppList);appList.add(0, tmpInfo);return appList;}@Overrideprotected void onPostExecute(List<ApplicationInfo> appList) {appInfoList.clear();appInfoList.addAll(appList);filteredAppList.clear();filteredAppList.addAll(appList);adapter.notifyDataSetChanged();progressDialog.dismiss();}}private boolean isSystemPackage(ApplicationInfo appInfo) {return (appInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;}private class AppListAdapter extends RecyclerView.Adapter<AppViewHolder> {@NonNull@Overridepublic AppViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {return new AppViewHolder(parent.getContext());}@Overridepublic void onBindViewHolder(@NonNull AppViewHolder holder, int position) {ApplicationInfo appInfo = filteredAppList.get(position);String appName = packageManager.getApplicationLabel(appInfo).toString();String packageName = appInfo.packageName;boolean isSystemApp = isSystemPackage(appInfo);SpannableStringBuilder appNameBuilder = new SpannableStringBuilder(appName);if (isSystemApp) {int startIndex = appName.length();int endIndex = startIndex + 2;appNameBuilder.append(" *");appNameBuilder.setSpan(new ForegroundColorSpan(Color.RED),startIndex, endIndex, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);}holder.bind(appInfo, appNameBuilder, packageName);}@Overridepublic int getItemCount() {return filteredAppList.size();}}@SuppressWarnings("all")private static class AppViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {private ImageView appIconImage;private TextView appNameText;private TextView packageNameText;public AppViewHolder(@NonNull Context context) {super(createItemView(context));appIconImage = itemView.findViewWithTag("appIconImage");appNameText = itemView.findViewWithTag("appNameText");packageNameText = itemView.findViewWithTag("packageNameText");itemView.setOnClickListener(this);}private static View createItemView(Context context) {LinearLayout itemView = new LinearLayout(context);itemView.setLayoutParams(new ViewGroup.LayoutParams(-1, -2));itemView.setOrientation(LinearLayout.HORIZONTAL);itemView.setGravity(Gravity.CENTER_VERTICAL);itemView.setPadding(16, 16, 16, 16);itemView.setBackgroundResource(android.R.drawable.menuitem_background);ImageView appIconImage = new ImageView(context);appIconImage.setTag("appIconImage");appIconImage.setLayoutParams(new LinearLayout.LayoutParams(64, 64));appIconImage.setScaleType(ImageView.ScaleType.CENTER_CROP);itemView.addView(appIconImage);LinearLayout textContainer = new LinearLayout(context);textContainer.setOrientation(LinearLayout.VERTICAL);itemView.addView(textContainer);TextView appNameText = new TextView(context);appNameText.setTag("appNameText");appNameText.setTextSize(18);appNameText.setPadding(16, 0, 0, 0);textContainer.addView(appNameText);TextView packageNameText = new TextView(context);packageNameText.setTag("packageNameText");packageNameText.setPadding(16, 0, 0, 0);textContainer.addView(packageNameText);return itemView;}public void bind(ApplicationInfo appInfo, SpannableStringBuilder appName, String packageName) {appNameText.setText(appName);packageNameText.setText(packageName);new LoadAppIconTask(appIconImage).execute(appInfo);}@Overridepublic void onClick(final View v) {spaceView.callOnClick();PackageManager packageManager = v.getContext().getPackageManager();String packageName = ((TextView) v.findViewWithTag("packageNameText")).getText().toString();if (packageName.equals(v.getContext().getPackageName())) return;try {Intent launcherIntent = new Intent(Intent.ACTION_MAIN);launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER);launcherIntent.setPackage(packageName);final List<ResolveInfo> resolveInfos = packageManager.queryIntentActivities(launcherIntent, 0);if (resolveInfos.size() > 1) {String[] acts = new String[resolveInfos.size()];for (int i = 0; i < resolveInfos.size(); i++) {ResolveInfo resolveInfo = resolveInfos.get(i);ActivityInfo activityInfo = resolveInfo.activityInfo;CharSequence label = resolveInfo.loadLabel(packageManager);acts[i] = label + " >>> " + activityInfo.name;}Arrays.sort(acts);new AlertDialog.Builder(v.getContext()).setTitle("LAUNCHER Activity").setCancelable(false).setItems(acts, new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialogInterface, int i) {Intent intent = new Intent();ActivityInfo activityInfo = resolveInfos.get(i).activityInfo;intent.setComponent(new ComponentName(activityInfo.packageName, activityInfo.name));v.getContext().startActivity(intent);}}).setNegativeButton("取消", null).create().show();} else {Intent launchIntent = packageManager.getLaunchIntentForPackage(packageName);if (launchIntent != null) {v.getContext().startActivity(launchIntent);} else {Toast.makeText(v.getContext(), "没启动页面", Toast.LENGTH_SHORT).show();}}} catch (Exception e) {e.printStackTrace();}}}@SuppressWarnings("all")private static class LoadAppIconTask extends AsyncTask<ApplicationInfo, Void, Drawable> {private final ImageView appIconImage;public LoadAppIconTask(ImageView appIconImage) {this.appIconImage = appIconImage;}@Overrideprotected Drawable doInBackground(ApplicationInfo... appInfo) {PackageManager packageManager = appIconImage.getContext().getPackageManager();return appInfo[0].loadIcon(packageManager);}@Overrideprotected void onPostExecute(Drawable drawable) {appIconImage.setImageDrawable(drawable);}}
}

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

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

相关文章

linux scp 免密传输配置 案例

目录 说明准备实现结果步骤生成RSA公钥和私钥查看密钥生成结果将公钥传输到目标服务器 额外内容自动备份文件脚本定时删除备份文件 说明 日常工作中常常会使用到ssh 的scp命令进行文件传输。有时候甚至使用自定义的脚本配合定时任务来对文件进行异地备份&#xff0c;那么此时就…

【Qt】常用控件(按钮/单选按钮/复选按钮/QLabel)

需要云服务器等云产品来学习Linux可以移步/-->腾讯云<--/官网&#xff0c;轻量型云服务器低至112元/年&#xff0c;新用户首次下单享超低折扣。 目录 一、按钮类控件 1、QPushButton(按钮) 1.1pushButtn中插入图片(void setIcon(const QIcon &icon);) 1.2给按钮插…

Laravel+workman+redis实现多线程异步任务处理

前言 PHP本身并不直接支持多线程编程&#xff0c;因为PHP的设计初衷是作为一个脚本语言&#xff0c;主要面向的是Web开发。不过我们可以使用一些扩展和库来实现多线程的功能&#xff0c;比如workerman和swoole。通过多线程异步执行任务&#xff0c;可以大大提高代码的执行效率。…

Java 学习和实践笔记(40):String类详解

示例代码&#xff1a; public class TestString {public static void main(String[] args) {String s0 null;//这是什么都没有&#xff0c;连对象都没有&#xff0c;也就是指针还没有指到某一个地址String s1 "";//这是有对象了&#xff08;指针已指向某一个地址了…

ocp考试通过率如何?ocp考试内容有哪些?

OCP考试通过率如何 通过率30%左右。考试笔试和上机都考。OCP认证想考好&#xff0c;自己必须有点能力撒&#xff0c;不要想着通过率怎么样&#xff0c;学的不怎么好&#xff0c;你学了那个不通过的就是你&#xff0c;这方面还是要看下自己的动力&#xff0c;每天不怎么学习&…

如何使用 ArcGIS Pro 生成TIN

三角网是一种常用于表示地表地形的数字地球模型&#xff08;DEM&#xff09;方式&#xff0c;我们可以通过 ArcGIS Pro 将等高线和高程点转换为TIN&#xff0c;这里为大家介绍一下转换方法&#xff0c;希望能对你有所帮助。 数据来源 教程所使用的数据是从水经微图中下载的高…

Java | 集合中正确使用Stream流

大家好&#xff0c;我是程序员影子 一名致力于帮助更多朋友快速入门编程的程序猿 今天来聊一聊关于Java 中的集合中正确使用Stream流 一、Stream的创建 Java 8 引入了Stream API&#xff0c;它可以让你以一种声明的方式处理数据。Stream可以由集合创建&#xff0c;使用stre…

智能合约 - 部署ERC20

Remix介绍 Remix是一个由以太坊社区开发的在线集成开发环境&#xff08;IDE&#xff09;&#xff0c;旨在帮助开发者编写、测试和部署以太坊智能合约。它提供了一个简单易用的界面&#xff0c;使得开发者可以在浏览器中直接进行智能合约的开发&#xff0c;而无需安装任何额外的…

springboot整合springsecurity,从数据库中认证

概述&#xff1a;springsecurity这个东西太容易忘了&#xff0c;这里写点东西&#xff0c;避免忘掉 目录 第一步&#xff1a;引入依赖 第二步&#xff1a;创建user表 第三步&#xff1a;创建一个用户实体类&#xff08;User&#xff09;和一个用于访问用户数据的Repository…

第十四届蓝桥杯省赛C++B组题解

考点 暴力枚举&#xff0c;搜索&#xff0c;数学&#xff0c;二分&#xff0c;前缀和&#xff0c;简单DP&#xff0c;优先队列&#xff0c;链表&#xff0c;LCA&#xff0c;树上差分 A 日期统计 暴力枚举&#xff1a; #include<bits/stdc.h> using namespace std; int …

Transformer的前世今生 day01(预训练、统计语言模型)

预训练 在相似任务中&#xff0c;由于神经网络模型的浅层是通用的&#xff0c;如下图&#xff1a; 所以当我们的数据集不够大&#xff0c;不能产生性能良好的模型时&#xff0c;可以尝试让模型B在用模型A的浅层基础上&#xff0c;深层的部分自己生成参数&#xff0c;减小数据集…

RabbitMQ的幂等性、优先级队列和惰性队列

文章目录 前言一、幂等性1、概念2、消息重复消费3、解决思路4、消费端的幂等性保障5、唯一 ID指纹码机制6、Redis 原子性 二、优先级队列1、使用场景2、如何添加3、实战 三、惰性队列1、使用场景2、两种模式3、内存开销对比 总结 前言 一、幂等性 1、概念 2、消息重复消费 3、…

【uniapp】表单验证不生效的解决方案

表单验证这个常见的功能&#xff0c;明明在element ui等框架已经用的很熟了&#xff0c;在uniapp开发时还是处处碰壁&#xff1f;这篇文章我会提示uni-forms表单验证的几个注意点&#xff0c;帮助大家排查。 示例 下面是一份包含普通验证和自定义验证的示例&#xff1a; <…

通过Pytest 多数据库连接实例了解Python工厂模式与单例模式的区别

1. 前言 在做自动化测试时&#xff0c;有些特殊项目需要连接不同的数据库进行造数或者断言。自动化框架中&#xff0c;一般使用Pytest yaml 数据驱动的居多&#xff0c;如果一个项目中有上百条数据库相关测试用例&#xff0c;在数据库测试时&#xff0c;如果设计不合理的连接模…

【大模型】直接在VS Code(Visual Studio Code)上安装CodeGeeX插件的过程

文章目录 一、什么是CodeGeeX&#xff08;一&#xff09;我理解的CodeGeeX&#xff08;二&#xff09;优缺点 二、CodeGeex下载、安装、注册&#xff08;一&#xff09;安装VS Code(Visual Studio Code)&#xff08;二&#xff09;下载安装CodeGeeX&#xff08;三&#xff09;注…

Java项目:59 ssm小型企业办公自动化系统的设计和开发+vue

作者主页&#xff1a;源码空间codegym 简介&#xff1a;Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 项目介绍 系统可以提供信息显示和相应服务&#xff0c; 其管理员管理部门经理&#xff0c;管理总经理&#xff0c;管理员工和员工留言以及员工工资&…

[经验分享]OpenCV显示上一次调用的图片的处理方法

最近在研究OpenCV时发现&#xff0c;重复调用cv::imshow("frame", frame)时&#xff0c;会显示出上一次的图片。 网上搜索了方法&#xff0c;有以下3种因素可能导致&#xff1a; 1. 图像变量未正确更新&#xff1a;可能在更新 frame 变量之前就已经调用了 imshow。…

Stream流将List列表中的每个对象赋值给另外一个List列表中的每个对象

源代码&#xff1a; public void repetition(Long id) {// 查询当前用户idLong userId BaseContext.getCurrentId();// 根据订单id查询当前订单详情List<OrderDetail> orderDetailList orderDetailMapper.getByOrderId(id);// 将订单详情对象转换为购物车对象List<…

搭建 es 集群

一、VMware准备机器 首先准备三台机器 这里我直接使用 VMware 构建三个虚拟机 都是基于 CentOS7 然后创建新用户 部署 es 需要单独创建一个用户&#xff0c;我这里在构建虚拟机的时候直接创建好了 然后将安装包上传 可以使用 rz 命令上传&#xff0c;也可以使用工具上传 工…

RK3588_Qt交叉编译环境搭建

buildroot编译 进入 /home/linux/plat/rk3588/sdk/buildroot 目录下&#xff0c;执行 Source ./envsetup.sh 选择具体平台编译&#xff0c;后再执行make编译 /home/linux/plat/rk3588/sdk/buildroot/output/OK3568/images 生成的rootfs.ext2镜像重新烧写到rk3568开发板中&…