The slide control is not displayed in Android, And the android slide control is

Source: Internet
Author: User

The slide control is not displayed in Android, And the android slide control is

1. Background

When using controls such as ScrollView and ListView, a sliding control is displayed on the right hand side by default. When we slide with our fingers, it is displayed that this control is not so comfortable and affects the user experience. Here is how to show the sliding control.


2. ScrollView not displayed

The Code is as follows:

<ScrollView        android:layout_width="fill_parent"        android:layout_height="fill_parent"        android:layout_below="@id/the_head_view"        android:focusable="true"        android:focusableInTouchMode="true"        android:scrollbars="none" ></ScrollView>

3. ListView is not displayed

<ListView        android:scrollbars="none"        android:layout_width="fill_parent"        android:layout_height="wrap_content" >    </ListView>

4. Summary

In fact, you only need a line of code, that is

android:scrollbars="none"

The bar control is not displayed. However, it should be noted that ScrollView may sometimes need to be used in combination. This feature is used only separately, and the sliding control cannot be displayed.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.