2011-09-20 58 views
0

我有一個編輯文本和一個submitt按鈕,用於在列表視圖中顯示輸出,但是當我在編輯文本中編寫某些內容時,我的編輯框不會因爲軟鍵盤而出現,所以我想設置滾動的編輯文本和submitt按鈕,使我可以在編輯text.i知道我不能設置滾動列表視圖,所以如何從列表視圖分離意味着如何使用多個相對佈局設置滾動視圖只爲上述列表的內容設置列表視圖上方的編輯文本的滾動視圖android

我的XML是

+1

如果你想把整個東西放在scrollview中,那麼把scrollview作爲這個相對佈局的父佈局。或者做一個你的edittext和按鈕放置在scrollview父佈局的部分。 – user370305

+0

其實我不能把整個東西放在滾動視圖,因爲我有我的佈局litview也默認listview不需要滾動視圖.. – shyam

+2

和什麼ABT,如果你只是在scrollview中的edittext和按鈕? – user370305

回答

1

只是嘗試下面的代碼在佈局

<ScrollView android:id="@+id/ScrollView01" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content"> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
<-- put your controll here which you want --> 
</LinearLayout> 
      </ScrollView> 
+0

請參閱我編輯的問題我粘貼新的XML滾動視圖標籤..但是當我使用它,然後我的列表視圖的內容來到整個視圖爲什麼? – shyam

+0

從列表視圖中刪除視圖 –

相關問題