By default android comes with a scroll bar for scrolling across up and down , but in some specific application we may need to hide the scroll bar and still we should be able to scroll down. So far that kind of application here is the trick to hide the seek bar.
Java File
public class HideScrollBarExample extends Activity {
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
ScrollView sView = (ScrollView)findViewById(R.id.ScrollView01);
// Hide the Scollbar
sView.setVerticalScrollBarEnabled(false);
sView.setHorizontalScrollBarEnabled(false);
}
}
Incoming search terms:
- disable scrollbar inside scrollview in java android
- adobe air scroller hide scrollbar
- how to disable horizontalscrollview android
- How to always show scrollbar in scrollview android
- gridlayout hide scrollbar android
- android scrollview hide scroll line
- android scrollview auto hide scrollbar
- android scroll bar visible
- android horizontalscrollview scrollbar visible
- android horizontalscrollview remove scrollbar



