I've tried to change the style and the position of the scrollbar which is inside a spinner, but it does not work.
MainActivity.java:
package com.example.testapp;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
activity_main.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Spinner
android:entries="@array/items"
android:verticalScrollbarPosition="left"
android:scrollbarThumbVertical="@drawable/scrollbar_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</RelativeLayout>
drawable/scrollbar_style.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#FF196C96" />
<corners android:radius="5dp" />
<size android:width="2dp" />
</shape>
values/strings.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">TestApp</string>
<string name="action_settings">Settings</string>
<string-array name="items">
<item>Item 1</item>
<item>Item 2</item>
<item>Item 3</item>
<item>Item 4</item>
<item>Item 5</item>
<item>Item 6</item>
<item>Item 7</item>
<item>Item 8</item>
<item>Item 9</item>
<item>Item 10</item>
</string-array>
</resources>
AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.testapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Screenshot:
Note that android:verticalScrollbarPosition="left"
and android:scrollbarThumbVertical="@drawable/scrollbar_style"
works fine if I use them with a ListView
:
Is it a bug? or is there another way to manipulate the scrollbar style and position within a Spinner
?
After hours of work, I got the right solution (Thanks Khaled for guiding me to the right direction). You need a custom spinner:
Note that I used HoloEveryWhere library, but the same solution would work with
android.widget.Spinner
.Spinners in Android doesn't have a Scrollbar, the scrollbar exist within the listView maintained inside the Spinner, and has no public access.
There's a run-time way to override it in the link below ..
Resource: https://stackoverflow.com/a/12644532/2128327