拡張可能なリスト ビュー アプリケーションを作成しました。アプリケーションは正常に動作しています。私の問題は、展開可能なビューのクリック ボタンです。リスト ビューの中央にはありません。画面の中央を表示する方法を教えてください。テキストは中央揃えですが、ボタンは画面の一番下にあります。これは問題です...
これは私のxmlコードです:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ExpandableListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:id="@+id/ExpandableListView">
</ExpandableListView>
</RelativeLayout>