我的程序中有40个Toggle Buttons,我想为每个按钮添加40个文本视图。我需要使我的TextView和Toggle按钮可滚动。我该怎么做?任何人都可以帮我PLZ ??
答案 0 :(得分:0)
在你的xml中添加以下内容
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Here you put the rest of your current view...Any layout can be placed within the scrollview and this will be scrollable-->
</ScrollView>