我创建了可扩展的列表视图应用程序。该应用程序运行良好;我的问题是我的可展开视图单击按钮。它不在列表视图的中心。如何显示屏幕的中心。文本居中,但按钮位于屏幕底部。这是个问题...
这是我的 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>