溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

詳解Android ScrollView嵌套EditText出現(xiàn)的滑動(dòng)問題

發(fā)布時(shí)間:2020-08-25 20:03:35 來源:腳本之家 閱讀:222 作者:黑石ZB 欄目:移動(dòng)開發(fā)

今天項(xiàng)目中需求是寫出一個(gè)很簡單的edittext輸入框,但要求當(dāng)輸入字?jǐn)?shù)過長時(shí)需要上下滑動(dòng)以便查看所有文字,因?yàn)轫撁娴撞坑幸粋€(gè)"確定"的button,但剛開始輸入框內(nèi)的問題怎么都滑動(dòng)不了,我一開始就想到了這是事件傳遞沖突問題,但試了很多種方法都不行,最后也是一個(gè)一個(gè)試才解決的,不多說,貼代碼:

<ScrollView
    android:id="@+id/sc_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:minHeight="360dp"
    android:scrollbars="none">
    <EditText
      android:id="@+id/editText"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginEnd="10dp"
      android:layout_marginStart="15dp"
      android:layout_marginTop="10dp"
      android:background="@null"
      android:gravity="top|start"
      android:hint="@string/FeedBackViewController_Placeholder"
      android:lineSpacingMultiplier="1.0"
      android:paddingEnd="10dp"
      android:paddingStart="10dp"
      android:maxHeight="450dp" //當(dāng)初這個(gè)沒加,也出現(xiàn)了滑動(dòng)不了的情況
      android:textSize="@dimen/font_size16"/>
  </ScrollView>

代碼里面需要:

editText.setOnTouchListener(new View.OnTouchListener() {
        @Override
          public boolean onTouch(View v, MotionEvent event) {
           // 解決scrollView中嵌套EditText導(dǎo)致不能上下滑動(dòng)的問題
             v.getParent().requestDisallowInterceptTouchEvent(true);
            switch (event.getAction() & MotionEvent.ACTION_MASK) {
              case MotionEvent.ACTION_UP:
            v.getParent().requestDisallowInterceptTouchEvent(false);
            break;
           }
           return false;
          }
      });

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI