I have such a problem - I want the scroll bar to always be visible. But for spinner function
setScrollbarFadingEnabled(false);
causes failures using NullExceptionPointer during GUI drawing.
XML tags also cannot solve this problem - it seems that the counter simply ignores them.
Perhaps there is another way to move? For example, using a custom scrollbar? If so, how can I do this?
Thank you for your answers, Dmitry.
As I already asked, here is the LogCat error message for a simple project with just a counter:
AndroidRuntime(2252): FATAL EXCEPTION: main AndroidRuntime(2252): java.lang.NullPointerException AndroidRuntime(2252): at android.view.View.onDrawScrollBars(View.java:5836) AndroidRuntime(2252): at android.view.View.draw(View.java:6799) AndroidRuntime(2252): at android.view.ViewGroup.drawChild(ViewGroup.java:1640) AndroidRuntime(2252): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) AndroidRuntime(2252): at android.view.ViewGroup.drawChild(ViewGroup.java:1638) AndroidRuntime(2252): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) AndroidRuntime(2252): at android.view.View.draw(View.java:6796) AndroidRuntime(2252): at android.widget.FrameLayout.draw(FrameLayout.java:352) AndroidRuntime(2252): at android.view.ViewGroup.drawChild(ViewGroup.java:1640) AndroidRuntime(2252): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) AndroidRuntime(2252): at android.view.ViewGroup.drawChild(ViewGroup.java:1638) AndroidRuntime(2252): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367) AndroidRuntime(2252): at android.view.View.draw(View.java:6796) AndroidRuntime(2252): at android.widget.FrameLayout.draw(FrameLayout.java:352) AndroidRuntime(2252): at com.android.internal.policy.impl.PhoneWindow$DecorView.draw(PhoneWindow.java:2078) AndroidRuntime(2252): at android.view.ViewRoot.draw(ViewRoot.java:1433) AndroidRuntime(2252): at android.view.ViewRoot.performTraversals(ViewRoot.java:1175) AndroidRuntime(2252): at android.view.ViewRoot.handleMessage(ViewRoot.java:1753) AndroidRuntime(2252): at android.os.Handler.dispatchMessage(Handler.java:99) AndroidRuntime(2252): at android.os.Looper.loop(Looper.java:123) AndroidRuntime(2252): at android.app.ActivityThread.main(ActivityThread.java:4632) AndroidRuntime(2252): at java.lang.reflect.Method.invokeNative(Native Method) AndroidRuntime(2252): at java.lang.reflect.Method.invoke(Method.java:521) AndroidRuntime(2252): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:871) AndroidRuntime(2252): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:629) AndroidRuntime(2252): at dalvik.system.NativeStart.main(Native Method)
source share