先看效果图

这个是我们自己的apk点击之后的效果

下边是布局文件

activity_main.xml主布局文件

<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"

    tools:context=".MainActivity"

    android:orientation="vertical">

<TextView 

   android:layout_width="match_parent"

   android:layout_height="wrap_content"

   android:gravity="center"

   android:layout_marginTop="15dp"

   android:text="@string/app_name"/>





    <GridView 

        android:id="@+id/allapps"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"/>





</LinearLayout>

我用一个GridView 做容器

下边是单个item布局文件

application_layout.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"

    android:gravity="center" 

    >

    

<ImageView 

   android:id="@+id/app_icon"

   android:layout_width="wrap_content"

   android:layout_height="wrap_content"

   android:layout_marginTop="15dp"/>



<TextView

   android:id="@+id/app_title"

   android:layout_width="wrap_content"

   android:layout_height="wrap_content"

   android:textSize="12sp"

   android:gravity="center"/>

</LinearLayout>

下边是AndroidManifest.xml。这个里边有几个和普通apk不同的地方

<?xml version="1.0" encoding="utf-8"?

>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.wind.lancherdemo"

    android:versionCode="1"

    android:versionName="1.0" >





    <uses-sdk

        android:minSdkVersion="17"

        android:targetSdkVersion="17" />





    <application

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name" >

        <activity

            android:name="com.wind.lancherdemo.MainActivity"

            android:theme="@android:style/Theme.Dialog"                  <!--这个更改app theme为Dialog-->

            android:label="@string/app_name" >

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />





                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>





</manifest>

下边是源文件

package com.wind.lancherdemo;





import java.util.ArrayList;

import java.util.Collections;

import java.util.List;





import android.app.Activity;

import android.content.ComponentName;

import android.content.Context;

import android.content.Intent;

import android.content.pm.PackageManager;

import android.content.pm.ResolveInfo;

import android.os.Bundle;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.view.Window;

import android.widget.AdapterView;

import android.widget.AdapterView.OnItemClickListener;

import android.widget.BaseAdapter;

import android.widget.GridView;

import android.widget.ImageView;

import android.widget.TextView;





public class MainActivity extends Activity implements OnItemClickListener{

private GridView mGridView;

private Context mContext;

private PackageManager mPackageManager;

private List<ResolveInfo> mAllApps;

private List<ResolveInfo> mShowApps = new ArrayList<ResolveInfo>();

private static final String[] mShowAppPkgNames = {"com.android.contacts","com.android.mms","com.android.browser"};  //这个地方能够加入我们须要过滤的apk包名

  @Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);

setContentView(R.layout.activity_main);



setupViews();

}













private void setupViews() {

mContext = MainActivity.this;

mPackageManager = getPackageManager();

mGridView = (GridView)findViewById(R.id.allapps);

bindAllApps();



mGridView.setAdapter(new GridItemAdapter(mContext, mShowApps));  //这个地方时设置GridView的适配器,不懂的能够去网上搜下详细教程

mGridView.setNumColumns(3);

mGridView.setOnItemClickListener(this);

}













private void bindAllApps() {

Intent mainIntent = new Intent(Intent.ACTION_MAIN,null);

mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);

mAllApps = mPackageManager.queryIntentActivities(mainIntent, 0);//这个地方就是我们依据我们安装的全部apk过滤出我们想要的apk,这样做的目的是你删除了某个我们须要的应用。我们的程序依旧正常

for (ResolveInfo app_item : mAllApps) {

String pkg = app_item.activityInfo.packageName;

for (int i = 0; i < mShowAppPkgNames.length; i++) {

if(mShowAppPkgNames[i].equals(pkg)) {

mShowApps.add(app_item);

}

}

}

Collections.sort(mShowApps, new ResolveInfo.DisplayNameComparator(mPackageManager));

}











//这个是依据我们的点击进入到详细的应用

@Override

public void onItemClick(AdapterView<?

> parent, View view, int position, long id) {

ResolveInfo res = mShowApps.get(position);

String pkg = res.activityInfo.packageName;

String cls = res.activityInfo.name;



ComponentName component = new ComponentName(pkg, cls);



Intent i = new Intent();

i.setComponent(component);

startActivity(i);

}

//这个地方是我们重写我们的GridView适配器

private class GridItemAdapter extends BaseAdapter{

private Context context;

private List<ResolveInfo> resInfo;







public GridItemAdapter(Context context, List<ResolveInfo> resInfo) {

this.context = context;

this.resInfo = resInfo;

}





@Override

public int getCount() {

// TODO Auto-generated method stub

return resInfo.size();

}





@Override

public Object getItem(int position) {

// TODO Auto-generated method stub

return resInfo.get(position);

}





@Override

public long getItemId(int position) {

// TODO Auto-generated method stub

return position;

}



//这个地方用ViewHolder的目的是不用我们每次重构我们的convertView 及寻找ImageView和TextView,能够提高app执行速度

@Override

public View getView(int position, View convertView, ViewGroup parent) {

ViewHolder holder = null;



if (convertView == null) {

convertView = LayoutInflater.from(context).inflate(R.layout.application_layout, null);

holder = new ViewHolder();

holder.mAppIcon = (ImageView)convertView.findViewById(R.id.app_icon);

holder.mAppTitle = (TextView)convertView.findViewById(R.id.app_title);

convertView.setTag(holder);

} else {

holder = (ViewHolder)convertView.getTag();

}



ResolveInfo res = resInfo.get(position);

holder.mAppIcon.setImageDrawable(res.loadIcon(mPackageManager));

holder.mAppTitle.setText(res.loadLabel(mPackageManager).toString());



return convertView;

}



private class ViewHolder {

ImageView mAppIcon;

TextView mAppTitle;

}

}





}

android中怎么把自己须要的app启动图标集中到一个弹出框中的更多相关文章

  1. 在IOS11中position:fixed弹出框中的input出现光标错位的问题

    问题出现的背景: 在IOS11中position:fixed弹出框中的input出现光标错位的问题 解决方案 一.设计交互方面最好不要让弹窗中出现input输入框: 二.前端处理此兼容性的方案思路: ...

  2. 苹果手机iOS11中fixed弹出框中input光标错位问题

    最近遇到了一个移动前端的BUG:手机弹出框中的输入框focus时光标可能会错位. 刚开始时我完全不知道错误原因是什么,在电脑上调试时完全没有问题,手机上出现问题时也没有找到规律.后来在网上搜索了大量的 ...

  3. 弹出框中选项卡的运用(easyUI)

    先看一下页面效果: 此处有两个知识点:一个是弹出框的运用,一个是选项卡的运用 分析一下该HTML代码,最外面一个div是弹出框的,默认是关闭状态,可通过ID来控制弹出框的开关,该div的样式是easy ...

  4. 弹出框中的AJAX分页

    $(function() { $("body").on("click",".set-topic",function(){ /*获取所有题目接 ...

  5. 使用easeui dialog弹出框中使用CKeditor多次加载后无法编辑问题

    问题呈现:弹出框页面 <tr class="addtr"> <th>内容</th> <td> <!-- <textare ...

  6. firefox浏览器中 bootstrap 静态弹出框中select下拉框不能弹出(解决方案)

    问题出现场景1: 在firefox浏览器中在bootstrap弹出的modal静态框中再次弹出一个静态框时 select下拉框不能弹出选项 解决方案:去掉最外层静态框的 tabindex=" ...

  7. iOS8 UIAlertController弹出框中添加视图(例如日期选择器等等)

    UIDatePicker *datePicker = [[UIDatePicker alloc] init]; datePicker.datePickerMode = UIDatePickerMode ...

  8. mvc 在弹出框中实现文件下载

    var myParent = parent.parent.parent.parent.parent.parent.parent.parent.parent.parent.parent.parent; ...

  9. IOS中position:fixed弹出框中的input出现光标错位的问题

    解决方案是 在弹框出现的时候给body添加fixed <style type="text/css"> body{ position: fixed; width: 100 ...

随机推荐

  1. Oracle大数据量查询实际分析

    Oracle数据库: 刚做一张5000万条数据的数据抽取,当前表同时还在继续insert操作,每分钟几百条数据. 该表按照时间,以月份为单位做的表分区,没有任何索引,当前共有14个字段,平均每个字段3 ...

  2. MyBatis一级缓存引起的无穷递归

    MyBatis一级缓存引起的无穷递归 引言: 最近在项目中参与了一个领取优惠劵的活动,当多个用户领取同一张优惠劵的时候,使用了数据库锁控制并发,起初的设想是:如果多个人同时领一张劵,第一个到达的人领取 ...

  3. Cocos2d-x 3.2 Lua演示样例 ClickAndMoveTest(点击移动測试)

    Cocos2d-x 3.2 Lua演示样例 ClickAndMoveTest(点击移动測试)  本篇博客介绍Cocos2d-x 3.2Lua演示样例中点击移动的样例,在这个样例你能够得到怎样创建单点触 ...

  4. 多线程——达到Runnable介面

    部分博客(多线程--继承Thread类)介绍了java多线程的第一种实现方法--继承Thread类.这篇博客介绍另外一种方法--实现Runnable接口,并实现run方法. 还用上篇博客的样例.如今用 ...

  5. JS获得URL参数

    使用JavaScript获得URL在参数值 方法一: function getUrlParam(name) {      var reg = new RegExp("(^|&)&qu ...

  6. Cocos2d-x 3.2 大富翁游戏项目开发-第七部分 获取角色路径_1

    以下是一些设计略显繁琐,有必要清除思维. 下一个主要的成就,当我们点击Gobutton后,得到一个随机数骰子,是走了几步,它是基于以下步骤行走路径的数目,然后移动位置的基于角色的路径. 流程如图普遍认 ...

  7. zigbee学习:示例程序SampleApp中通讯流程

    zigbee学习:示例程序SampleApp中通讯流程 本文博客链接:http://blog.csdn.net/jdh99,作者:jdh,转载请注明. 参考链接: http://wjf88223.bl ...

  8. uva-11234 Expressions

    Arithmetic expressions are usually written with the operators in between the two operands (which is ...

  9. java JNI开发

    Jni程序开发的一般操作步骤如下: l         编写java中的调用类 l         用javah生成c/c++原生函数的头文件 l         c/c++中调用需要的其他函数功能, ...

  10. 【读书札记】建立第一个Web项目

    安装配置好jdk.tomcat,我用的版本号是7.0.54,我放在C:\server\apache-tomcat-7.0.54下, CATALINA_BASE:C:\server\apache-tom ...