AutoCompleteTextView のドロップダウン候補リストの右側に PgUp/PgDn ボタンを追加したいと思います。上記のレイアウトで独自のポップアップ ウィンドウを作成しました (レイアウト xml を以下に示します)。AutoCompleteTextView のドロップダウン リスト ビューを自分のポップアップ ウィンドウに置き換える方法を教えてもらえますか?
これが私が望むものです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="10">
<ListView
android:id="@+id/listView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="9"
android:background="@drawable/frame">
</ListView>
<RelativeLayout android:id="@+id/pageUpDown" android:layout_weight="1" android:layout_width="0dp" android:layout_height="match_parent">
<ImageButton android:id="@+id/pageUp" android:src="@drawable/pct_up_icon" android:background="@null" android:layout_width="48dp" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" android:text="" android:layout_height="48dp"></ImageButton>
<ImageButton android:id="@+id/pageDown" android:src="@drawable/pct_down_icon" android:background="@null" android:layout_width="48dp" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:text="" android:layout_height="48dp"></ImageButton>
</RelativeLayout>
</LinearLayout>