1

私はアンドロイドが初めてで、データベースからのリストビューを使用しています。ここで、編集用と削除用の 2 つのアイコンを追加します。これが現在動作している私の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;
     }

編集してアイコンを追加する方法を教えてもらえますか?

4

5 に答える 5

1

あなたが言ったように、あなたは新しいので、あなたのニーズに似たリストビューを作成しています。それでも問題が解決しない場合は、質問することができます。他の方法もある可能性がありますが、私は以下の方法に従いました。

3 つの手順で作成しました。 1. XML でリストビュー レイアウトを作成します。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);
    }

上記の例が役立つと思います。概念を取得してみてください。何か問題に直面している場合は、尋ねることができます。私はあなたを助けようとします。

于 2013-11-04T09:06:40.183 に答える
0

Android を初めて使用する場合は混乱しますが、その方法を学ぶのに近道はありません。このチュートリアルも試してみてください。かなり役に立ちました。

http://theopentutorials.com/tutorials/android/listview/android-custom-listview-with-image-and-text-using-baseadapter

于 2013-11-04T08:03:02.617 に答える
0

カスタム ArrayAdapter の getView() メソッドでリストビューのボタンにリスナーを配置する方法や、リストビュー内のどのアイテムがそのボタンを所有しているかを把握する方法を示しているチュートリアルはありません。これを行う方法があったとしても、(ArrayAdapter クラスから) アクティビティまたはフラグメントでメソッドを呼び出す方法を理解する必要があり、そこでそのアイテムを操作できます。

したがって、これにはいくつかのオプションがあります。ボタンの代わりに、リスト項目自体のクリック/プレスに応答する必要があります。これは、リストビューに OnItemClickListener または OnItemLongClickListener を追加することによって行われます。その後、いくつかの方法でこれらのアクションに応答できます。

  • ユーザーが項目を削除または編集するオプションを選択できるコンテキスト メニュー (メニュー オプションのリストビューを使用)。
  • ボタンで同じことを行うポップアップ ダイアログ。それらを編集モードにして、削除ボタンを追加することもできます。

アイテムを編集するためのダイアログを作成する必要があるため、ダイアログ オプションを使用します。

于 2013-11-04T07:55:20.997 に答える