如何在我的应用程序顶部添加一个不动的视图?

时间:2015-08-20 16:31:40

标签: java android

我正在尝试创建一个应用程序,其中包含顶部的视图,其中包含一个图像和一些文本以及一个可以向上或向下滚动的列表视图。创建此布局的最佳方法是什么?

http://i.stack.imgur.com/Hkywv.png

1 个答案:

答案 0 :(得分:0)

最简单的解决方案就是这样。从我的代码中复制和粘贴的那种。

<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:ignore="ContentDescription" >

    <ImageView
        android:layout_width="match_parent"
        tools:ignore="ContentDescription" />

    <ListView
        android:id="@+id/listviewschedule"
        style="@style/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="-21dp"
        android:layout_marginBottom="-10dp"
        android:fadingEdge="none"
        android:fastScrollEnabled="false"
        android:smoothScrollbar="true"
        android:showDividers="none"/>    
</LinearLayout>