国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android ScrollView只能添加一個(gè)子控件問題解決方法

2020-04-11 10:45:07
字體:
供稿:網(wǎng)友

本文實(shí)例講述了Android ScrollView只能添加一個(gè)子控件問題解決方法。分享給大家供大家參考,具體如下:

有下面一段代碼

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="fill_parent"  android:layout_height="fill_parent"  android:orientation="vertical" >  <ScrollView    android:layout_width="fill_parent"    android:layout_height="fill_parent" >    <Button      android:layout_width="fill_parent"      android:layout_height="wrap_content" />    <Button      android:layout_width="fill_parent"      android:layout_height="wrap_content" />    <Button      android:layout_width="fill_parent"      android:layout_height="wrap_content" />  </ScrollView></LinearLayout>

一個(gè)ScrollView里面添加了三個(gè)Button,也許你認(rèn)為沒有什么問題,那么我們運(yùn)行一下看看

出現(xiàn)了一個(gè)異常

很明顯,異常告訴我們ScrollView can host only one direct child

既然說只能容納一個(gè)直接的子控件,那么我們就可以容納多個(gè)間接的子控件,直接在這些子控件外面再套一層LinearLayout就OK了

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="fill_parent"  android:layout_height="fill_parent"  android:orientation="vertical" >  <ScrollView    android:layout_width="fill_parent"    android:layout_height="fill_parent" >    <LinearLayout      android:layout_width="fill_parent"      android:layout_height="fill_parent"      android:orientation="vertical" >      <Button        android:layout_width="fill_parent"        android:layout_height="wrap_content" />      <Button        android:layout_width="fill_parent"        android:layout_height="wrap_content" />      <Button        android:layout_width="fill_parent"        android:layout_height="wrap_content" />    </LinearLayout>  </ScrollView></LinearLayout>

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android開發(fā)入門與進(jìn)階教程》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)

希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 栾城县| 罗定市| 武平县| 阜城县| 玉门市| 广州市| 平邑县| 盐池县| 麻江县| 穆棱市| 保定市| 泰和县| 杂多县| 闻喜县| 积石山| 西盟| 辽宁省| 富锦市| 黄大仙区| 唐河县| 宁乡县| 津南区| 田林县| 清徐县| 滨海县| 汉源县| 新龙县| 中宁县| 青海省| 商都县| 图们市| 成安县| 丰城市| 六枝特区| 台北市| 宜都市| 新竹县| 崇礼县| 临沂市| 三门县| 新蔡县|