Как показать полосу прокрутки в NestedScrollView

Эй, я реализовал NestedScrollView в Activity, но я не могу показать полосу прокрутки, как в ScrollView.

Как я могу это показать?

<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/appBar">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clipChildren="false"
            android:clipToPadding="false"
            android:orientation="vertical"
            android:paddingLeft="@dimen/dimen_2"
            android:paddingRight="@dimen/dimen_2">
        </LinearLayout>
</android.support.v4.widget.NestedScrollView>

Ответы на вопрос(2)

Ваш ответ на вопрос