mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-06 03:25:39 +00:00
107 lines
3.8 KiB
Java
107 lines
3.8 KiB
Java
![]() |
package com.topjohnwu.magisk.utils;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.content.SharedPreferences;
|
||
|
import android.content.pm.ApplicationInfo;
|
||
|
import android.content.pm.PackageManager;
|
||
|
import android.preference.PreferenceManager;
|
||
|
import android.view.LayoutInflater;
|
||
|
import android.view.View;
|
||
|
import android.view.ViewGroup;
|
||
|
import android.widget.ArrayAdapter;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
|
||
|
import com.topjohnwu.magisk.R;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
import java.util.Set;
|
||
|
|
||
|
public class ApplicationAdapter extends ArrayAdapter<ApplicationInfo> {
|
||
|
private List<ApplicationInfo> appsList = null;
|
||
|
private Context context;
|
||
|
private PackageManager packageManager;
|
||
|
public ArrayList arrayList;
|
||
|
public SharedPreferences prefs;
|
||
|
|
||
|
public ApplicationAdapter(Context context, int textViewResourceId,
|
||
|
List<ApplicationInfo> appsList) {
|
||
|
super(context, textViewResourceId, appsList);
|
||
|
this.context = context;
|
||
|
this.appsList = appsList;
|
||
|
packageManager = context.getPackageManager();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int getCount() {
|
||
|
return ((null != appsList) ? appsList.size() : 0);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public ApplicationInfo getItem(int position) {
|
||
|
return ((null != appsList) ? appsList.get(position) : null);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long getItemId(int position) {
|
||
|
return position;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public View getView(int position, View convertView, ViewGroup parent) {
|
||
|
View view = convertView;
|
||
|
|
||
|
prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||
|
if (null == view) {
|
||
|
LayoutInflater layoutInflater = (LayoutInflater) context
|
||
|
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
||
|
view = layoutInflater.inflate(R.layout.app_list_row, null);
|
||
|
}
|
||
|
|
||
|
ApplicationInfo applicationInfo = appsList.get(position);
|
||
|
if (null != applicationInfo) {
|
||
|
TextView appName = (TextView) view.findViewById(R.id.app_name);
|
||
|
TextView packageName = (TextView) view.findViewById(R.id.app_paackage);
|
||
|
ImageView iconview = (ImageView) view.findViewById(R.id.app_icon);
|
||
|
ImageView statusview = (ImageView) view.findViewById(R.id.app_status);
|
||
|
appName.setText(applicationInfo.loadLabel(packageManager));
|
||
|
packageName.setText(applicationInfo.packageName);
|
||
|
iconview.setImageDrawable(applicationInfo.loadIcon(packageManager));
|
||
|
if (CheckApp(applicationInfo.packageName)) {
|
||
|
statusview.setImageDrawable(this.context.getDrawable(R.drawable.root));
|
||
|
} else {
|
||
|
statusview.setImageDrawable(null);
|
||
|
}
|
||
|
}
|
||
|
return view;
|
||
|
}
|
||
|
|
||
|
public void UpdateRootStatusView(int position, View convertView) {
|
||
|
View view = convertView;
|
||
|
if (null == view) {
|
||
|
LayoutInflater layoutInflater = (LayoutInflater) context
|
||
|
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
||
|
view = layoutInflater.inflate(R.layout.app_list_row, null);
|
||
|
}
|
||
|
ApplicationInfo applicationInfo = appsList.get(position);
|
||
|
if (null != applicationInfo) {
|
||
|
ImageView statusview = (ImageView) view.findViewById(R.id.app_status);
|
||
|
if (CheckApp(applicationInfo.packageName)) {
|
||
|
statusview.setImageDrawable(this.context.getDrawable(R.drawable.root));
|
||
|
} else {
|
||
|
statusview.setImageDrawable(null);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
private boolean CheckApp(String appToCheck) {
|
||
|
Set<String> set = prefs.getStringSet("autoapps", null);
|
||
|
arrayList = new ArrayList<>(set);
|
||
|
return arrayList.toString().contains(appToCheck);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
};
|