<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:focusable="true"
android:focusableInTouchMode="true"
android:fadeScrollbars="false" >
<Scrollview ...
スクロールバーを常に表示したい(android:fadeScrollbars="false"
)!画面にも EditTexts があります。そのため、 (android:focusableInTouchMode="true"
とandroid:focusable="true"
) を付けました。この最後の 2 つのコードを入力すると、スクロールバーがフェードアウトするのはなぜですか? 解決策はありますか?