可以在一個頁面中有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>