いくつかのアイテムを含む listView があります。ListView の最後の項目の下にある領域「A」のクリックを処理するにはどうすればよいですか? -------------------------
アイテム1
-------------------------
アイテム2
-------------------------
アイテム3
-------------------------
エリアA
-------------------------
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#000000">
<ListView
android:id="@+id/lvMainLeft"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:choiceMode="multipleChoice"
style="@style/list_view">
</ListView>
</RelativeLayout>