我为谷歌手表编写了一个应用程序,并在其中一个片段中使用了WearableListView。
布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main" android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="4dp"
android:paddingBottom="0sp">
<android.support.wearable.view.WearableListView
android:id="@+id/messages"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:layout_marginBottom="0sp"/>
</RelativeLayout>
但是列表顶部总是有一个顶部空白区域,占用了屏幕的一半空间。我怎么能隐藏它?或者如果这不可能,我该如何改变它的高度?