我在一个活动中安装了应用程序,我有另一个活动,其中仅列出在第一个活动中检查过的应用程序。有三个问题: 拳头在第二个活动中显示了这样的东西
它会显示此类应用,而不是其名称和图标。我能做些什么呢?
其次,你可以看到它显示重复。我没有任何复选框,所以如果应用程序在第一个活动中被选中两次,我不知道如何删除应用程序
第三我使用它来启动在上图中选择的活动
Intent newIntent = getPackageManager().getLaunchIntentForPackage(getPackageName());
startActivity(newIntent);
它刚开始我的第一个活动。我需要在getPackageName()空间中编写什么?
如果需要,我会发布第一个和第二个活动的代码。 感谢。
这是我的AppInfoAdapter
public class AppInfoAdapter extends BaseAdapter {
private Context mContext;
private List<?> mListAppInfo;
private PackageManager mPackManager;
public AppInfoAdapter(Context c, List<?> list, PackageManager pm) {
mContext = c;
mListAppInfo = list;
mPackManager = pm;
}
@Override
public int getCount() {
return mListAppInfo.size();
}
@Override
public Object getItem(int position) {
return mListAppInfo.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// get the selected entry
ApplicationInfo entry = (ApplicationInfo) mListAppInfo.get(position);
// reference to convertView
View v = convertView;
// inflate new layout if null
if(v == null) {
LayoutInflater inflater = LayoutInflater.from(mContext);
v = inflater.inflate(R.layout.lvrowlayout, null);
}
// load controls from layout resources
ImageView ivAppIcon = (ImageView)v.findViewById(R.id.ivIcon);
TextView tvAppName = (TextView)v.findViewById(R.id.tvName);
TextView tvPkgName = (TextView)v.findViewById(R.id.tvPack);
// set data to display
ivAppIcon.setImageDrawable(entry.loadIcon(mPackManager));
tvAppName.setText(entry.loadLabel(mPackManager));
tvPkgName.setText(entry.packageName);
// return view
return v;
}
这里是lvrowlayout
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="5dip"
>
<ImageView
android:id="@+id/ivIcon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="5dip"
android:scaleType="center"
/>
<LinearLayout
android:orientation="vertical"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="1"
>
<TextView
android:id="@+id/tvName"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center_vertical"
/>
<TextView
android:id="@+id/tvPack"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:singleLine="true"
android:ellipsize="marquee"
/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
您使用的是ListView吗?你能发贴你的适配器吗?看起来你没有覆盖ListView的适配器数量或你可以设置图片的布局等。
您可以像这样
为行创建布局<?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="horizontal" >
<ImageView
.... />
<TextView
.... />
</LinearLayout>
然后在ListView适配器
中@Override
public View getView(final int position, View convertView, ViewGroup parent) {
View v = convertView;
LayoutInflater vi (LayoutInflater)getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.custom_row, null);
//Set image and text view here
}