我是android的新手,我正在使用来自数据库的列表视图。现在,我想在其中添加两个图标,一个用于编辑,一个用于删除。这是我目前正在使用的java代码
public void ListDrwaer() {
List<Map<String, String>> employeeList = new ArrayList<Map<String, String>>();
try {
JSONObject jsonResponse = new JSONObject(jsonResult);
JSONArray jsonMainNode = jsonResponse.optJSONArray("emp_info");
for (int i = 0; i < jsonMainNode.length(); i++) {
JSONObject jsonChildNode = jsonMainNode.getJSONObject(i);
String name = jsonChildNode.optString("cat_name");
number = jsonChildNode.optString("cat_id");
String outPut = name /*+ "-" + number*/;
employeeList.add(createEmployee("employees", outPut));
}
} catch (JSONException e) {
Toast.makeText(getApplicationContext(), "Error" + e.toString(),
Toast.LENGTH_SHORT).show();
}
SimpleAdapter simpleAdapter = new SimpleAdapter(this, employeeList,
android.R.layout.simple_list_item_1,
new String[] { "employees" }, new int[] { android.R.id.text1 });
listView.setAdapter(simpleAdapter);
}
private HashMap<String, String> createEmployee(String name, String number) {
HashMap<String, String> employeeNameNo = new HashMap<String, String>();
employeeNameNo.put(name, number);
return employeeNameNo;
}
任何人都可以告诉我如何编辑它来添加图标吗?
答案 0 :(得分:1)
正如你告诉你的那样,我正在创建一个类似于你需求的列表视图。如果您仍然遇到任何问题,那么您可以问。还可以有其他方法,但我已经在下面一个方法。
我已经分三步创建了它: 1.在XML中创建listview布局。 2.为您的行创建一个布局,您将在列表视图行上进行膨胀和设置。 3.通过扩展arrayadapter创建自定义适配器。 4.设置自定义适配器。
步骤1:以XML格式创建列表视图布局。
下面给出的XML代码将为您创建一个列表视图。
<RelativeLayout 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
</ListView>
</RelativeLayout>
步骤2:为您的行创建一个布局,您将在列表视图行上进行膨胀和设置。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="false"
android:layout_alignParentTop="false"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:text="TextView" />
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="34dp"
android:layout_toRightOf="@+id/textView1"
android:src="@drawable/ic_launcher" />
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="16dp"
android:layout_toRightOf="@+id/imageButton1"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
步骤3:通过扩展arrayadapter创建自定义适配器。
import java.util.ArrayList;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageButton;
import android.widget.TextView;
import android.widget.Toast;
public class my_list_adapter extends ArrayAdapter<String> {
private Context context;
private ArrayList<String> labels;
public my_list_adapter(Context context, ArrayList<String> labels) {
super(context, R.layout.list_layout, labels);
this.context = context;
this.labels = labels;
}
static class ViewHolder {
public TextView textView1;
public ImageButton icon_1;
public ImageButton icon_2;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
ViewHolder holder;
View rowView = convertView;
if (rowView == null) {
LayoutInflater inflater = ((Activity) context).getLayoutInflater();
rowView = inflater.inflate(R.layout.list_layout, null, true);
holder = new ViewHolder();
holder.textView1 = (TextView) rowView.findViewById(R.id.textView1);
holder.icon_1 = (ImageButton) rowView.findViewById(R.id.imageButton1);
holder.icon_2 = (ImageButton) rowView.findViewById(R.id.imageButton2);
rowView.setTag(holder);
} else {
holder = (ViewHolder) rowView.getTag();
}
holder.textView1.setText(labels.get(position));
holder.icon_1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(context.getApplicationContext(), "bb icon 1 item clicked position = " + position, Toast.LENGTH_LONG).show();;
}
});
holder.icon_2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(context.getApplicationContext(), "bb icon 2 item clicked position = " + position, Toast.LENGTH_LONG).show();;
}
});
return rowView;
}
}
第4步:设置自定义适配器。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView list_view = (ListView) findViewById(R.id.listView1);
ArrayList<String> labels = new ArrayList<String>();
for (int i = 0; i < 10; i++) {
labels.add ("item " + i);
}
my_list_adapter adapter = new my_list_adapter(this, labels);
list_view.setAdapter(adapter);
}
我认为上面的例子可以帮到你。尝试获得这个概念。如果你遇到任何问题,那么你可以问。我会尽力帮助你。
答案 1 :(得分:0)
使用CustomArray适配器添加编辑/删除按钮。这tutorial会对您有所帮助。请检查一下。
答案 2 :(得分:0)
对于这种情况,您必须使用自定义适配器
表示扩展BaseAdapter
并尝试在该适配器中实现所有方法。
答案 3 :(得分:0)
没有任何教程可以帮助您,因为没有一个教程显示如何在自定义ArrayAdapter的getView()方法中将listner放在listview中的按钮上,并向您展示如何计算列表中的哪个项目拥有该按钮。即使有办法做到这一点,你必须弄清楚(从ArrayAdapter类)如何在Activity或Fragment中调用一个方法,然后你可以在那里对该项进行操作。
所以,这给你留下了几个选择。您需要响应列表项本身上的点击/按下而不是按钮。这是通过向列表视图添加OnItemClickListener或OnItemLongClickListener来完成的。然后,您可以通过多种方式响应这些操作:
由于你需要编写一个Dialog来编辑项目,我会选择Dialog选项。
答案 4 :(得分:0)
如果你是Android的新手,这会令人困惑,但学习如何做到这一点并没有捷径。也尝试这个教程,我发现它非常有用: