我是Android的新手。我想创建此布局。
我试过这个,但我不知道怎么能这样做。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/main_relative_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</RelativeLayout>
</ScrollView>
看到我使用过ScrollView,但我无法创建设计。请帮助我
答案 0 :(得分:1)
您应该使用自定义ListView
来实现此功能,请参阅示例 - http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/
答案 1 :(得分:0)
你需要这个
<RelativeLayout (root)>
<LinearHayout (head)>
..some other UI tag for page head
</LinearLayout>
<ListView />
</RelativeLayout>
此外,尝试google“android custom listview”了解更多细节......