LinearLayoutはスクロールしますが、EditTextはスクロールしません。私は次の操作を実行しようとしましたが、私のscrollviewを無効にする方法がわからない、これは焦点であるスクロール可能なLinearLayout内でEditTextをスクロール可能にするにはどうすればよいですか?
:
editText.setMovementMethod(new ScrollingMovementMethod());
編集:私は、スクロールのEditTextを設定しています
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="top"
android:orientation="vertical" >
<EditText
android:id="@+id/messageeditor_editText2"
android:layout_width="match_parent"
android:layout_height="200dp"/>
</LinearLayout>
</ScrollView>
編集テキストのリスナーを変更してください:
private OnFocusChangeListener focuschangelistener = new OnFocusChangeListener(){
@Override
public void onFocusChange(View arg0, boolean arg1) {
if(arg1){
sv.setEnabled(false);
}else{
}
}
};