I want to show scroll when the listview is touched and want to disappear when not touched irrespective of the number of items in a listview.
This is what my current snippet looks like
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:id="@+id/list_profile"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="#40ffffff"
android:dividerHeight="1dp"
android:fastScrollEnabled="true"
android:scrollbarStyle="insideOverlay"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#B1FFFFFF" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="18dp"
android:paddingLeft="35dp"
android:paddingRight="35dp"
android:paddingTop="18dp">
<com.bleexample2.CustomView.MyEditText
android:id="@+id/edit_search"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="1"
android:background="@drawable/bg_edit_text"
android:hint="성함을 입력해주세요"
android:lines="1" />
<ImageButton
android:id="@+id/btn_search"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:scaleType="centerInside"
android:src="@drawable/ic_search" />
<ImageButton
android:id="@+id/btn_add_profile"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:scaleType="centerInside"
android:src="@drawable/ic_add" />
</LinearLayout>
</LinearLayout>
My styles.xml looks like this :
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:textColor">#c6c6c6</item>
<item name="android:editTextColor">@color/editTextTextColor</item>
<item name="android:fastScrollTrackDrawable">@drawable/fast_scrollbar_track</item>
<item name="android:fastScrollThumbDrawable">@drawable/ic_thumb</item>
</style>
<style name="AppTheme.CustomFastScrollBar" parent="AppTheme" >
<item name="android:fastScrollThumbDrawable">@drawable/scroll_bar_vertical_thumb</item>
<item name="android:fastScrollTrackDrawable">@drawable/scrollbar_vetical</item>
<item name="android:fadeScrollbars">false</item>
</style>
Using the fastScrollAlwaysVisible I can only set it to either always show or not show. How can I achieve what I want , which is to only show when listview is touched.