Android開發15——給TextView加上滾動條
給TextView加上滾動條非常簡單,隻需要把TextView標簽放在ScrollView標簽中
<ScrollView android:layout_width="wrap_content" android:layout_height="wrap_content"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android: /> </ScrollView>
最後更新:2017-04-03 16:49:34