好的,所以我按照Tab Widget教程为我的应用程序创建了一些选项卡。在其中一个选项卡中,我有一个TextView,其中包含大量我正在调试的文本。但是,对于所有文本,所有信息都不会显示在屏幕上。我想我可以向下滚动以查看其余部分,但我无法滚动。有关如何制作它的任何想法,以便我可以向下滚动我的FrameLayout,以便我可以看到我的其余文本?
答案 0 :(得分:15)
您可以使用ScrollView环绕要滚动的视图,如下所示:
<ScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff">
// the views here that you want to make scrollable
</ScrollView>