1

カスタムリストアイテム(ボタンを含む)でListViewを使用しています。ボタンのOnClickListenerを内部クラス(アダプタークラスで定義)に設定するカスタムアダプターがあります。

リストビューが表示されているクラス(ListAcitivtyクラスとは異なるxmlファイルで定義されている)のボタンにアクセスしたい。このクラス内でonClickListenerメソッドを設定したいと思います。これを行うための最良の方法は何ですか?

編集:これは私のlist_item.xmlです(私はListView行に使用します)。

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


<ImageView
    android:id="@+id/imageView"
    android:layout_width="22dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="4dp"
    android:layout_marginRight="10dp"
    android:layout_marginTop="4dp"
    android:contentDescription="Color"
    android:src="@drawable/ic_launcher" >
</ImageView>

<EditText
    android:id="@+id/nameEdit"
    android:layout_width="250dp"
    android:layout_height="wrap_content"
    android:textSize="20dp" 
    android:inputType="textPersonName"
    >
</EditText>


<Button
    android:id="@+id/deleleButton"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:background="@drawable/delete_button" >

</Button>

</LinearLayout>

ListActivityを拡張するクラス内のボタン(id:deleteButton)にアクセスするにはどうすればよいですか?listactivityを拡張するクラスには、別のレイアウトがあります(たとえば、main.xml)。listactivityを拡張するクラス内でsetContentView(main)を実行すると、findViewById(R.id.deleteButton)はnullを返します。

編集2:これはListActivityを拡張する私のクラスです。setContentViewの後にfindViewById(R.id.deleteButton)を配置すると、nullが返されます。

public class PlayerSelection extends ListActivity {
    ListView list;
    ArrayList<PlayerField> textviews = null;
    PlayerFieldsAdapter adapter = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.player_selection_page);
        list = getListView();

        textviews = new ArrayList<PlayerField>();
        for (int i = 0; i< GlobalVariables.getPlayers(); i++) {
            textviews.add(i, new PlayerField());
        }
        adapter = new PlayerFieldsAdapter(this, R.layout.list_item, textviews); 

    ViewGroup header = (ViewGroup) getLayoutInflater().inflate(R.layout.list_header, null);
    Button backButton = null;
    for (int i = 0; i < header.getChildCount(); i++) {
        View v = header.getChildAt(i);
        if (v instanceof Button) {
            backButton = (Button) v;
            break;
        }
    }
    backButton.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                Intent optionsIntent = new Intent(PlayerSelection.this, OptionsScreen.class);
                startActivity(optionsIntent);
            }
        });
    list.addHeaderView(header);
        list.setAdapter(adapter);
    }
4

1 に答える 1

1

これを実現する簡単な方法は、CustomAdapterクラス内にフィールドを作成することです。

private OnClickListener listener;

次に、このフィールドのセッター メソッドを指定します。Activity次のステップは、次のようにクラス内でこのリスナーを指定することです。

CustomAdapter adapter = (CustomAdapter) getListView().getAdapter();
adapter.setListener(<your implementation of the listener>);

次に、CustomAdaptergetView()メソッド内で、このリスナーをボタンに設定します。

Button btn = (Button) convertView.findViewById(R.id.btn);
btn.setOnClickListener(listener);

お役に立てれば。

于 2012-07-08T09:36:38.720 に答える