Как добавить Editext и кнопку в эффективный адаптер, который имеет значок и текст - PullRequest
1 голос
/ 19 апреля 2010

Я хочу создать макет таким образом, чтобы сверху текст и кнопка редактирования находились там в одном ряду.Текст для поиска я ввожу в editext и нажимаю на кнопку поиска.Затем я хочу отобразить настраиваемое представление списка, где каждая строка содержит изображение и текст (в соответствии с примером списка демоверсий API list14, который я пробовал).Но когда я запускаю приложение, кнопка и текст редактирования добавляются в каждую строку (т. Е. Каждая строка содержит изображение, текст, текст редактора, кнопку. Может ли кто-нибудь подсказать, как решить эту проблему.

Ниже приведен мойXML-файл:

<!--
    <FrameLayout android:layout_width="wrap_content"
    android:layout_height="0dip" android:layout_weight="1"></FrameLayout>
-->
<ImageView android:id="@+id/icon" android:layout_width="48dip"
    android:layout_height="48dip" />

<TextView android:id="@+id/text" android:layout_gravity="center_vertical"
    android:layout_width="0dip" android:layout_weight="1.0"
    android:layout_height="wrap_content" />


<!--
    <EditText android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:id="@+id/prdsearchtb"
    android:text="@string/tb_prd_search_lbl"></EditText>
-->
<!--
    <TableLayout android:id="@+id/TableLayout01"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"> <TableRow>
-->
<Button android:id="@+id/prdsrcbutton" android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:text="@string/btn_lbl_prd_search"
    android:layout_x="2px" android:layout_y="410px"></Button>
<!-- </TableRow>
</TableLayout>

->

и Java-файл: / ** * * / package org.techdata.activity;

import android.app.AlertDialog; импорт android.app.ListActivity; импорт android.content.Context; импорт android.content.Intent; импорт android.graphics.Bitmap; импорт android.graphics.BitmapFactory; импорт android.os.Bundle; импорт android.util.Log;импорт android.view.LayoutInflater; импорт android.view.View; импорт android.view.ViewGroup; импорт android.widget.BaseAdapter; импорт android.widget.Button; импорт android.widget.EditText; импорт android.widget.ImageView; импортandroid.widget.ListView; импорт android.widget.TextView;

/ ** * @author jayanthg * * / открытый класс ProductSearch extends ListActivity {

private static class ProductSearchAdapter extends BaseAdapter {

    private LayoutInflater mInflater;
    private Bitmap mIcon1;
    private Bitmap mIcon2;

    public ProductSearchAdapter(Context context) {

        mInflater = LayoutInflater.from(context);

        // Icons bound to the rows.
        mIcon1 = BitmapFactory.decodeResource(context.getResources(),
                R.drawable.icon48x48_1);
        mIcon2 = BitmapFactory.decodeResource(context.getResources(),
                R.drawable.icon48x48_2);
    }

    @Override
    public int getCount() {

        return DATA.length;
    }

    @Override
    public Object getItem(int position) {

        return position;
    }

    @Override
    public long getItemId(int position) {

        return position;
    }

    @Override
    public View getView(final int position, View convertView,
            ViewGroup parent) {
        ViewHolder holder;
        Button btn=null;

        if (convertView == null) {
            convertView = mInflater.inflate(R.layout.productsearch, null);

            // Creates a ViewHolder and store references to the two children
            // views
            // we want to bind data to.
            holder = new ViewHolder();
            holder.text = (TextView) convertView.findViewById(R.id.text);
            holder.icon = (ImageView) convertView.findViewById(R.id.icon);
            btn=(Button)convertView.findViewById(R.id.prdsrcbutton);
            convertView.setTag(holder);
        } else {
            // Get the ViewHolder back to get fast access to the TextView
            // and the ImageView.
            holder = (ViewHolder) convertView.getTag();
        }

        // Bind the data efficiently with the holder.
        holder.text.setText(DATA[position]);
        holder.icon.setImageBitmap((position & 1) == 1 ? mIcon1 : mIcon2);

        holder.icon.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Log.i("image", " u clicked on icon Position" + position);

            }
        });
        holder.text.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Log.i("Text", " u clicked on text Position" + position);

            }
        });

        btn.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Log.i("Button","U clicked on button");

            }
        });


        return convertView;
    }

    static class ViewHolder {
        TextView text;
        ImageView icon;
    }

    private static final String[] DATA = { "Abbaye de Belloc",
            "Abbaye du Mont des Cats" };

}

ListView product_search_list;
Button srch_btn;
EditText srch_text;

@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setListAdapter(new ProductSearchAdapter(this));
    // setContentView(R.layout.productsearch);
    // getListView().setEmptyView(findViewById(R.id.text));
    // srch_text = (EditText)findViewById(R.id.prdsearchtb);
    // srch_btn = (Button) findViewById(R.id.prdsearchtb);
    // srch_btn.setOnClickListener(new View.OnClickListener() {
    //      
    // @Override
    // public void onClick(View v) {
    // callProductSearchAdapter();
    //
    // }
    // });

}

void callProductSearchAdapter() {
    setListAdapter(new ProductSearchAdapter(this));
}

private void createDialog(String title, String text, final Intent i) {
    if (i == null) {
        AlertDialog ad = new AlertDialog.Builder(this).setIcon(
                R.drawable.alert_dialog_icon).setPositiveButton("Ok", null)
                .setTitle(title).setMessage(text).create();
        ad.show();
    }
}

}

С уважением, Jayanth

1 Ответ

1 голос
/ 19 апреля 2010

Что вы делаете, это модифицируете макет, который он использует для отдельных строк, поэтому кнопки появляются в каждой строке. Что вам нужно сделать, это создать файл XML для основного макета с кнопками и текстовыми представлениями, а затем вложить в него ListView. Например, создайте файл main.xml следующим образом:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <LinearLayout android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="Bla"/>

        <EditText android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="Bla"/>

    </LinearLayout>

    <ListView android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
</LinearLayout>

Важно, чтобы идентификатор представления списка был точно таким же, как указано выше (@android:id/list). Если вы не используете это, ваш настроенный «Эффективный адаптер» не сможет его найти. После этого вам просто нужно добавить setContentView(R.layout.main); в метод onCreate сразу после строки super.onCreate (...).

...