2012-06-05 85 views
9

是否可以在ScrollView的EditText中滾動?在ScrollView中的EditText中滾動

<ScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content"> 
<LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical"> 
<!-- scroll inside this EditText --> 
      <EditText android:id="@+id/et_scrollhere" 
       android:lines="6" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:hint="Voorbeeld" 
       android:layout_margin="5dp" 
       android:scrollbars="vertical" 
       android:inputType="textMultiLine"/> 
</LinearLayout> 
</ScrollView> 

或者是否有可能在縱向模式下嵌入EditText鍵盤?像WhatsApp那樣,EditText是可滾動的。

+0

只能使用機器人:滾動條= 「垂直」 刪除 ... –

+0

我需要內部滾動我的linearLayout也。 – Klaasvaak

+0

修復EditText的高度而不是換行內容。 –

回答

37
EditText dwEdit = (EditText) findViewById(R.id.DwEdit);  
dwEdit.setOnTouchListener(new OnTouchListener() { 

       public boolean onTouch(View view, MotionEvent event) { 
        // TODO Auto-generated method stub 
        if (view.getId() ==R.id.DwEdit) { 
         view.getParent().requestDisallowInterceptTouchEvent(true); 
         switch (event.getAction()&MotionEvent.ACTION_MASK){ 
         case MotionEvent.ACTION_UP: 
          view.getParent().requestDisallowInterceptTouchEvent(false); 
          break; 
         } 
        } 
        return false; 
       } 
      }); 

而且在XML文件中

 <EditText 
     android:id="@+id/DwEdit" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:minLines="10" 
     android:scrollbarStyle="insideInset" 
     android:scrollbars="vertical" 
     android:overScrollMode="always" 
     android:inputType="textCapSentences"> 
     </EditText> 

我希望它會幫助你..

+1

真棒!效果很好! –

+0

謝謝... user1840899 – Amsheer

+1

我一直在尋找這個很長的時間 – Androider