在屏幕顶部下方启动ListView

时间:2014-12-18 15:31:55

标签: java android xml listview

我尝试在ListView上方添加某种填充或边距,以便我可以添加自己的带图像和按钮的自定义导航栏。我尝试在我的XML中添加填充和边距,但我的ListView似乎仍然从顶部开始。

如何以低于50p左右的速度在屏幕顶部开始列表视图?

布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.mycompany.myapp.myActivity"
android:padding="0dp">

<ListView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/theList"
    android:paddingTop="44dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_below="@+id/imageView" />


</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

padding在应用它的容器边界内添加空格。您希望marginTop上的marginListView使用paddingTopRelativeLayout在其应用的容器范围之外添加空格)。

对于您的情况,您应该使用ToolBar,并将其放在ListView上方。如果您使用ToolBar代替ListView,那么仅提供Linearlayout尺寸会将RelativeLayout推到下方{{1}}。

答案 1 :(得分:0)

试试这段代码。 第二个LinearLayout可用于保存您选择的自定义导航项,并让它选择其高度。 列表视图将自动填充视图的其余部分。

与此类似的内容并尝试ListView

的保证金
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="com.mycompany.myapp.myActivity">

 <LinearLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content">
 <!-- Place your images and buttons need for navigation here -->
 <!-- Also dont forget to choose the appropiate orientation to this layout-->
 </LinearLayout>

<ListView
    android:layout_width="wrap_content"
    android:layout_height="fillparent"
    android:id="@+id/theList"/>


</LinearLayout>