如何在Android的单个滚动视图中制作文本视图和切换按钮?

时间:2014-12-06 14:55:43

标签: android textview android-scrollview

我的程序中有40个Toggle Buttons,我想为每个按钮添加40个文本视图。我需要使我的TextView和Toggle按钮可滚动。我该怎么做?任何人都可以帮我PLZ ??

1 个答案:

答案 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>