我加了滾動型是這樣的:我添加了一個滾動型,它給了我一個錯誤
<ScrollView
android:layout_width="fill_parent"
android:layout_height="200dp" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:text="- A Learning"
android:textColor="#ffffff"
android:textSize="20sp"
android:textStyle="italic" />
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:text="- B Learning"
android:textColor="#ffffff"
android:textSize="20sp"
android:textStyle="italic" />
有< /滾動型>高達
,給了我這個在圖形佈局: 在渲染過程中引發異常:ScrollView只能託管一個直接子項,異常詳細信息記錄在窗口>顯示視圖>錯誤日誌中
Scrollview可以有一個直接的孩子。在'LinearLayout'裏面包裝你的視圖 – Raghunandan