listview的用法求教。。。。

可以在一个页面中有textview又可以有imageview和listview上下排列?是正常的写还是不行??

<?xml version="1.0" encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none">

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


    <!-- 这里用自定义的 -->
    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

正常些就可以了?
不过建议用scroolview 嵌套 listview

...>
..>

这里加你的textview imageview 和listview 就好了

显示问题你可以参考这里
http://blog.csdn.net/lxk_1993/article/details/50403886