我正在开发一个锁定特定应用程序的AppLock。为此,我有一个包含ListView的屏幕,ListView有多个Switch,每个安装一个应用程序。
我需要知道用户打开了哪些开关,然后提取写在其中的文本。
SensitiveApps.java
package com.sr.droidlock;
import android.content.Intent;
import android.content.pm.ResolveInfo;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Switch;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class SensitiveApps extends ActionBarActivity {
Switch appName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sensitive_apps);
final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
final List pkgAppsList = getPackageManager().queryIntentActivities(mainIntent, 0);
ArrayList<String> tasks = new ArrayList<String>();
appName = (Switch) findViewById(R.id.appName) ;
for (Object object : pkgAppsList)
{
ResolveInfo info = (ResolveInfo) object;
final String title = (String)((info != null) ? getBaseContext().getPackageManager().getApplicationLabel(info.activityInfo.applicationInfo) : "???");
tasks.add(title);
}
Collections.sort(tasks, new Comparator<String>() {
@Override
public int compare(String s1, String s2) {
return s1.compareToIgnoreCase(s2);
}
});
ArrayAdapter<String> adapter = new ArrayAdapter <String>(this,R.layout.layout_sensitive_apps, R.id.appName ,tasks);
ListView listView = (ListView) findViewById(R.id.listView);
listView.setAdapter(adapter);
}
}
activity_sensitive_apps.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.sr.droidlock.SensitiveApps">
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/listView" />
</LinearLayout>
layout_sensitive_apps
<?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" >
<Switch
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:text="New Switch"
android:id="@+id/appName" />
</LinearLayout>
答案 0 :(得分:2)
扩展ArrayAdapter并覆盖getView方法,您需要在其中扩充自己的布局。因此它可以根据您的需要包含尽可能多的交换机。然后每个开关都可以实现自己的OnCheckedChangeListener,这样您就可以准确地知道哪个开关已经更改。
修改强>
创建一个新类CustomArrayAdapter,它扩展ArrayAdapter并覆盖getView。
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Inflate view
LayoutInflater inflator = mContext.getLayoutInflater();
View view = inflator.inflate(R.layout.list_item_topic, null);
switch = (Switch)view.findViewById(R.id.any_switch);
switch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
}
});
// TODO bind other views or anything else you need
return view;
}
答案 1 :(得分:1)
如果您为模型中的切换创建getter
和setter
,我认为您可以实现目标。对于您安装的应用程序(在用户点击时),您可以设置一些值,例如setInstalledApp(true);
当您循环使用数组时,请检查单击应用程序用户的交换机getter
。例如:
if(switch.isInstalledApp()){
//get item data
}else{
}
希望能帮到你!