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