кнопки в справке listview?

#android

#Android

Вопрос:

Мне нужно поместить кнопку в представление списка, чтобы перейти к другому представлению.

моя кнопка: AddTime = (кнопка) findViewById(R.id.Add_Time);

я пытаюсь заставить его работать, используя:

открытый класс myclass расширяет ListActivity, реализует OnClickListener {

и у меня есть public void onClick (просмотр arg0) { }

и мне нужно, чтобы это перешло в другое место, я думаю, используя это намерение intent = new Intent (это, myclass.class ); startActivity (намерение);

как заставить все это работать в listview?

Ответ №1:

используйте это

 package example.buttonWithList;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.ListActivity;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

public class buttonWithList extends ListActivity {
    /** Called when the activity is first created. */
    String[] items={"azhar","j"};
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        setListAdapter(new bsAdapter(this));


    }
    public class bsAdapter extends BaseAdapter
    {
        Activity cntx;
        public bsAdapter(Activity context)
        {
            // TODO Auto-generated constructor stub
            this.cntx=context;

        }

        @Override
        public int getCount()
        {
            // TODO Auto-generated method stub
            return items.length;
        }

        @Override
        public Object getItem(int position)
        {
            // TODO Auto-generated method stub
            return items[position];
        }

        @Override
        public long getItemId(int position)
        {
            // TODO Auto-generated method stub
            return items.length;
        }

        @Override
        public View getView(final int position, View convertView, ViewGroup parent)
        {
            View row=null;
            // TODO Auto-generated method stub
            /*if(convertView==null)
            {

            }*/
                LayoutInflater inflater=cntx.getLayoutInflater();
                row=inflater.inflate(R.layout.row, null);
                TextView tv=(TextView)row.findViewById(R.id.txtRow);
                Button btn=(Button)row.findViewById(R.id.btnRow);
                tv.setText(items[position]);
                btn.setOnClickListener(new OnClickListener(){

                    @Override
                    public void onClick(View v) {
                        // TODO Auto-generated method stub
                        onListItemClick(this, this, position, null);
                    }
                    });


            return row;
        }

        protected void onListItemClick(OnClickListener onClickListener,
                OnClickListener onClickListener2, int position, Object object) {
            // TODO Auto-generated method stub
            //Toast.makeText(this, items[position], 3000);
            System.out.println(items[position]);
        }
    }
}
  

Ответ №2:

main.xml

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="@string/hello" />
    <ListView android:id="@android:id/list" android:layout_width="wrap_content"
        android:layout_height="wrap_content"></ListView>
</LinearLayout>
  

Комментарии:

1. Вероятно, имело бы смысл отредактировать этот пост, чтобы добавить фрагменты кода в другие опубликованные вами ответы, а затем удалить другие сообщения с ответами. Это больше соответствовало бы тому, как используется StackOverflow.

Ответ №3:

row.xml

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent">
    <TextView android:text="@ id/TextView01" android:id="@ id/txtRow"
        android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
    <Button android:id="@ id/btnRow" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:text="Click "></Button>
</LinearLayout>
  

Ответ №4:

Я предлагаю вам использовать представление списка со строками. Создайте массив кнопок и при нажатии на одну из них с помощью onClick получите кнопку в массиве с параметром position