希望大家一切顺利。
我的问题是:
我有如下xml
代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/activity_left_margin"
android:layout_marginRight="@dimen/activity_right_margin"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_bottom_padding"
android:paddingTop="@dimen/activity_top_padding" >
<EditText
android:id="@+id/custDetailsNameEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/name_cust_all_add"
android:inputType="textPersonName"
android:textSize="@dimen/common_fontsize" />
<EditText
android:id="@+id/custDetailsDescEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:hint="@string/description_add_all_cust"
android:inputType="textMultiLine"
android:lines="5"
android:minLines="3"
android:gravity="top|left"
android:scrollbars="vertical"
android:scrollbarStyle="insideInset"
android:overScrollMode="always"
android:fadeScrollbars="false"
android:scrollbarAlwaysDrawVerticalTrack="true"
android:textSize="@dimen/common_fontsize" />
</LinearLayout>
</ScrollView>
因为我有两个EditText
</ScrollView>
,第二<EditText/>
不滚动内侧。问题是在我滚动时滚动了全视图,但是当用户输入超过 5 行时,我还想在第二个 EditText 中垂直滚动。在该滚动条显示但不滚动。
我该如何解决这个问题。
您的帮助将不胜感激。
这段代码应该可以工作.....
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
findViewById(R.id.parentScrollView).setOnTouchListener(parentListener);
findViewById(R.id.custDetailsDescEditText).setOnTouchListener(childListener);
}
OnTouchListener parentListener = new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
findViewById(R.id.custDetailsDescEditText).getParent()
.requestDisallowInterceptTouchEvent(false);
return false;
}
};
OnTouchListener childListener = new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
v.getParent().requestDisallowInterceptTouchEvent(true);
return false;
}
};
在你的代码中尝试这样的东西
ScrollView scroller = new ScrollView(this);
EditText et=(EditText)findViewById(R.id.yourEdittext);
scroller.addView(et);