gpt4 book ai didi

android - ScrollView 内的可滚动 EditText

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:36:25 25 4
gpt4 key购买 nike

我搜索了所有关于这个主题的帖子,但仍然找不到任何解决方案。我有一个大布局,它可以用 ScrollView 滚动,它也有 EditText 和 scrollable 。如果我尝试滚动 edittext ,布局就会开始滚动。我该如何解决?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ScrollView
android:id="@+id/lroot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fillViewport="true"

>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ImageView
android:id="@+id/img6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:gravity="right"
android:onClick="runInfo"
android:src="@drawable/info_btn" />

<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/splash" />

<!-- Scrollable EditText -->
<EditText
android:id="@+id/EditText01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:autoLink="all"
android:background="@drawable/isim_soyisim"
android:clickable="true"
android:cursorVisible="true"
android:gravity="left|top"
android:scrollbars="vertical"
android:inputType="textMultiLine"
android:longClickable="false"
android:maxLines="5"
android:singleLine="false"

/>


</LinearLayout>
</ScrollView>

</LinearLayout>

最佳答案

package com.sam.views;

import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.widget.ScrollView;

public class CustomScrollview extends ScrollView{

public CustomScrollview(Context context) {
super(context);
}

public CustomScrollview(Context context, AttributeSet attrs) {
super(context, attrs);
}

public CustomScrollview(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
final int action = ev.getAction();
switch (action)
{
case MotionEvent.ACTION_DOWN:
super.onTouchEvent(ev);
break;

case MotionEvent.ACTION_MOVE:
return false; // redirect MotionEvents to ourself

case MotionEvent.ACTION_CANCEL:
super.onTouchEvent(ev);
break;

case MotionEvent.ACTION_UP:
return false;

default: Log.i("VerticalScrollview", "onInterceptTouchEvent: " + action ); break;
}

return false;
}

@Override
public boolean onTouchEvent(MotionEvent ev) {
super.onTouchEvent(ev);
return true;
}
}

关于android - ScrollView 内的可滚动 EditText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9457778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com