我尝试在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>
答案 0 :(得分:0)
padding
在应用它的容器边界内添加空格。您希望marginTop
上的margin
或ListView
使用paddingTop
(RelativeLayout
在其应用的容器范围之外添加空格)。
对于您的情况,您应该使用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>