Es gibt keine Werte wie outsideOutset und insideOutset. Mögliche vier Werte sind insideOverlay, insideInset, outsideOverlay, outsideInset
die Dokumentation ist unter den folgenden zwei Links zu finden...
http://developer.Android.com/reference/Android/view/View.html#attr_android:scrollbarStyle
http://developer.Android.com/reference/Android/view/View.html#SCROLLBARS_INSIDE_INSET
Ich konnte die Dokumentation nicht richtig verstehen. Also unter Bezugnahme auf ApiDemos Scrollbar Demo, versuchte ich dies. Aber ich habe festgestellt, dass es keinen Unterschied gibt in insideInset und outsideOverlay .
Diese beiden Werte sind unterschiedlich, entweder sollte es beide als Einlage o Überlagerung
aktualisiert scrollbar3.xml ist
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:id="@+id/view1"
android:layout_width="100dip"
android:layout_height="120dip"
android:padding="8dip"
android:scrollbarStyle="insideOverlay"
android:background="@android:color/white"
android:overScrollMode="never">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:background="@android:color/darker_gray"
android:text="@string/scroll_text" />
</ScrollView>
<ScrollView
android:id="@+id/view2"
android:layout_width="100dip"
android:layout_height="120dip"
android:padding="8dip"
android:scrollbarStyle="insideInset"
android:background="@android:color/white"
android:overScrollMode="never">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:background="@android:color/darker_gray"
android:text="@string/scroll_text" />
</ScrollView>
<ScrollView
android:id="@+id/view3"
android:layout_width="100dip"
android:layout_height="120dip"
android:padding="8dip"
android:scrollbarStyle="outsideOverlay"
android:background="@android:color/white"
android:overScrollMode="never">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:background="@android:color/darker_gray"
android:text="@string/scroll_text" />
</ScrollView>
<ScrollView
android:id="@+id/view4"
android:layout_width="100dip"
android:layout_height="120dip"
android:padding="8dip"
android:scrollbarStyle="outsideInset"
android:background="@android:color/white"
android:overScrollMode="never">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:background="@android:color/darker_gray"
android:text="@string/scroll_text" />
</ScrollView></LinearLayout>
Ich hoffe, dass dies jemand sieht und aufklärt...