2010-07-03 107 views
4

好的,所以我按照Tab Widget教程爲我的應用程序創建了一些選項卡。在其中一個選項卡中,我有一個帶有大量正在調試的文本的TextView。但是,對於所有文本,所有信息都不會顯示在屏幕上。我想我可以向下滾動查看其餘的內容,但我無法滾動。任何想法如何使我可以向下滾動我的FrameLayout,以便我可以看到我的文本的其餘部分?Scrollable FrameLayout

回答

11

你可以圍繞你想成爲滾動以滾動型的觀點,如下:

<ScrollView android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:background="#ffffff"> 

// the views here that you want to make scrollable 

</ScrollView> 
+0

嘿,你們的工作..謝謝! – Chiggins 2010-07-03 20:34:39

+0

不客氣:) – xil3 2010-07-03 20:36:09