- ScrollView и HorizontalScrollView
- Методы scrollBy() и scrollTo()
- Android Horizontal ScrollView Tutorial With Example For Beginners
- XML Information
- 1. android:layout_height
- 2. android:layout_width
- 3. android:id
- 4. android:fillViewport
- Methods of Horizontal Scroll View
- 1. addView(View child)
- 2. arrowScroll(int direction)
- 3. computeScroll()
- 4. fullScroll(int direction)
- 5. isFillViewport()
- 6. onTouchEvent(MotionEvent ev)
- 7. requestChildFocus(View child, View focused)
- 8. scrollTo(int x, int y)
- 9. setFillViewport(boolean fillViewport)
- 10. onSizeChanged(int w, int h, int oldw, int oldh)
- Android Horizontal ScrollView Example
- Step 1. Make XML file
- Step 2. Java Writings
- Another Example For Scroll View
- Step 1. Updating activity_main.xml file
- Step 2. Java Programme
- Android ScrollView (Horizontal, Vertical) with Examples
- Android ScrollView Example
- activity_main.xml
- Output of Android ScrollView Example
- Android HorizontalScrollView Example
- activity_main.xml
- Output of Android HorizontalScrollView Example
ScrollView и HorizontalScrollView
При большом количестве информации, которую нужно поместить на экране приходится использовать полосы прокрутки. В Android существуют специальные компоненты ScrollView и HorizontalScrollView, которые являются контейнерными элементами и наследуются от ViewGroup. Обратите внимание, что класс TextView использует свою собственную прокрутку и не нуждается в добавлении отдельных полос прокрутки. Но использование отдельных полос даже с TextView может улучшить вид вашего приложения и повышает удобство работы для пользователя.
На панели инструментов компоненты можно найти в разделе Containers.
В контейнеры ScrollView и HorizontalScrollView можно размещать только один дочерний элемент (обычно LinearLayout), который в свою очередь может быть контейнером для других элементов. Виджет ScrollView, несмотря на свое название, поддерживает только вертикальную прокрутку, поэтому для создания вертикальной и горизонтальной прокрутки необходимо использовать ScrollView в сочетании с HorizontalScrollView. Обычно ScrollView используют в качестве корневого элемента, а HorizontalScrollView в качестве дочернего. Можно и наоборот, пробуйте.
В в теле метода onCreate() создайте ссылку на элемент TextView, объявленный в XML-разметке, и запишите в него через метод setText() какой-нибуль длинный текст, который не поместится в видимые размеры экрана устройства:
Запустив проект, вы должны увидеть вертикальную и горизонтальную полосы прокрутки при попытке скролирования.
Если полосы прокрутки вас раздражают, то используйте атрибут android:scrollbars=»none», который скроет их.
По такому же принципу можете вложить ImageView, чтобы просматривать большие картинки:
Методы scrollBy() и scrollTo()
Вы можете программно прокручивать контент с помощью методов scrollBy() и scrollTo(). Например, можно организовать автоматическую прокрутку во время чтения. В нашем примере мы будем прокручивать контент с помощью трёх кнопок.
Сам код для методов:
Дополнительное чтение
Библиотека ParallaxScrollView с использованием эффекта параллакса. Вы прокручиваете длинный текст, а задний фон прокручивается чуть медленнее. Возможно, кому-то пригодится. Там же можно скачать готовое демо и просмотреть в действии.
Источник
Android Horizontal ScrollView Tutorial With Example For Beginners
Warmest welcome to Android Horizontal ScrollView Tutorial With Example For Beginners.
I will explain about the definition and usage about the horizontal scroll view in this tutorial.
There are some cases where you need to show the icons or other things in the horizontal manner.
Now if the number of items are large then small screen of mobile device can not handle these items. Here, horizontal scroll view holds our hand.
For example, you are developing an app about the book store or library. Now you want to make book shelf in this app. Book shelf have horizontal design where you will show the cover page books in the horizontal manner.
Of course, there are much books in the every category. Here, you need to use the horizontal scroll view to show case book shelf with plenty of book cover pages.
A Horizontal scroll view is a sub class of Frame Layout meaning that you should place one child in it containing the entire contents to scroll. This child may itself be a layout manager with a complex hierarchy of objects.
Generally, developers prefer to use Linearlayout as an only child of the Horizontal Scroll View. Here, orientation of linearlayout is horizontal so that compiler place every child horizontally.
The TextView class also takes care of its own scrolling, so does not require a HorizontalScrollView, but using the two together is possible to achieve the effect of a text view within a larger container.
Using horizontalscrollview, you can enable horizontal scrolling only.
For vertical scrolling you should use Scroll View or ListView or RecyclerView Widgets.
XML Information
Following is the XML representation of the horizontalscrollview.
Following are the important properties of the horizontal scroll view.
1. android:layout_height
You can set the height of the horizontal scroll view by using this property.
To give fix height to the horizontal scroll view, you can use dp also.
2. android:layout_width
It will define the width of the horizontal scroll view. Generally, you should give value as match_parent so that it reduce the complexity for different screen size.
But you can also give fix size in the dp.
3. android:id
Id will specify the unique identity to the scroll view.
When you want to access your horizontal scroll view in the java file, You will need this id in the findViewById() method.
This id should be unique in the whole android studio project to reduce complexity and data redundancy.
4. android:fillViewport
It defines whether the horizontal scrollview should stretch its content to fill the viewport.
This property accepts boolean value. If true then scroll view will stretch it’s content otherwise not.
For more details about this property, visit this tutorial.
Methods of Horizontal Scroll View
1. addView(View child)
Using the above method, you can add a child from the java class.
2. arrowScroll(int direction)
Handle scrolling in response to a left or right arrow click.
3. computeScroll()
Called by a parent to request that a child update its values for mScrollX and mScrollY if necessary.
4. fullScroll(int direction)
This method handles scrolling in response to a “home/end” shortcut press.
5. isFillViewport()
Indicates whether this HorizontalScrollView’s content is stretched to fill the viewport.
This method checks whether the fillViewPort option is enabled for horizontal scroll view or not.
6. onTouchEvent(MotionEvent ev)
Implement this method to handle touch screen motion events.
7. requestChildFocus(View child, View focused)
Called when a child of this parent wants focus.
By default focus is hold by the horizontalscrollview.
8. scrollTo(int x, int y)
Set the scrolled position of your view.
This version also clamps the scrolling to the bounds of our child.
9. setFillViewport(boolean fillViewport)
Indicates this HorizontalScrollView whether it should stretch its content width to fill the viewport or not.
10. onSizeChanged(int w, int h, int oldw, int oldh)
This is called during layout when the size of this view has changed.
Android Horizontal ScrollView Example
Create a new and fresh project in the android studio.
While you are going through the process of preparing a brand new project in android studio, you will be asked to choose the type of the default activity.
Here, I recommend you to select Empty Activity. Empty activity does not write any source code automatically, so that we can have complete clear and empty project workspace.
Now in the new project, there are two automatically generated files. activity_main.xml and MainActiivity.java.
Step 1. Make XML file
In the activity_main.xml file, you need to add the below source code
Above file make a layout where compiler will put 11 buttons horizontally which you can scroll horizontally.
Root layout of this file is the constraint layout.
Constraint layout has only one child, which is the HorizontalScrollView. This tag is the main element, which will enable us to make our layout horizontal scrollable.
Now official documentation of HorizontalScrollView says that it should contain only one child.
So HorizontalScrollView also have only one child, which is Linearlayout.
This linearlayout contains the 11 buttons. Orientation property of linearlayout has the value “horizontal”.
Because of this “horizontal” value of orientation property, linearlayout will arrange all the eleven buttons in the horizontal manner.
If the value of orientation property is “vertical” then there is no meaning of using horizontal scroll view.
Step 2. Java Writings
Our main task in this project is to make horizontal scroll view.
We can achieve it from XML file activity_main.xml only.
So we do not need to do any programming logic in the JAVA file.
Hence, do not update anything in the MainActivity.java file.
Source code for MainActivity.java file is looking like the below
After this much work in this project, run it and you should get the below output
Another Example For Scroll View
Our first example was adding only buttons in the horizontal scroll view.
Now in this example, I will add images in the horizontal scroll view.
So again, make a new project in the android studio.
Again this time, you need select Empty activity as the default activity in this project.
Step 1. Updating activity_main.xml file
You will find activity_mian.xml file in this project also.
This time, source code for activity_mian.xml file is looking like the below
The parent element of this file is the HorizontalScrollView.
As mentioned in the previous example, horizontal scroll view can have only one child tag so this parent element have one child as a linearlayout.
Now this linearlayout contains several number of imageviews.
All this imageviews have mages of different marvel heroes.
Orientation property for this linearlayout has the value “horizontal”. Hence, compiler will set every image horizontally.
You can scroll to view all the images. You can also add textview, button,imageview together to make horizontal scroll view something like you can find on the play store.
Play store shows us various apps which are horizontally scrollable along with the app icon and app name.
Step 2. Java Programme
Similar to previous example, we have written all the logic for horizontal scroll view in the activity_main.xml file.
So again, we should not touch MainActivity.java file.
This file may look like the below
The final outcome of this file may look like the below
Источник
Android ScrollView (Horizontal, Vertical) with Examples
In android, ScrollView is a kind of layout that is useful to add vertical or horizontal scroll bars to the content which is larger than the actual size of layouts such as linearlayout, relativelayout, framelayout, etc.
Generally, the android ScrollView is useful when we have content that doesn’t fit our android app layout screen. The ScrollView will enable a scroll to the content which is exceeding the screen layout and allow users to see the complete content by scrolling.
The android ScrollView can hold only one direct child. In case, if we want to add multiple views within the scroll view, then we need to include them in another standard layout like linearlayout, relativelayout, framelayout, etc.
To enable scrolling for our android applications, ScrollView is the best option but we should not use ScrollView along with ListView or Gridview because they both will take care of their own vertical scrolling.
In android, ScrollView supports only vertical scrolling. In case, if we want to implement horizontal scrolling, then we need to use a HorizontalScrollView component.
The android ScrollView is having a property called android:fillViewport, which is used to define whether the ScrollView should stretch it’s content to fill the viewport or not.
Now we will see how to use ScrollView with linearlayout to enable scroll view to the content which is larger than screen layout in android application with examples.
Android ScrollView Example
Following is the example of enabling vertical scrolling to the content which is larger than the layout screen using an android ScrollView object.
Create a new android application using android studio and give names as ScrollViewExample. In case if you are not aware of creating an app in android studio check this article Android Hello World App.
Once we create an application, open activity_main.xml file from \res\layout folder path and write the code like as shown below.
activity_main.xml
If you observe above code, we used a ScrollView to enable the scrolling for linearlayout whenever the content exceeds layout screen.
Output of Android ScrollView Example
When we run the above example in android emulator we will get a result as shown below.
If you observe the above result, ScrollView provided a vertical scrolling for linearlayout whenever the content exceeds the layout screen.
As we discussed, ScrollView can provide only vertical scrolling for the layout. In case, if we want to enable horizontal scrolling, then we need to use HorizontalScrollView in our application.
We will see how to enable horizontal scrolling for the content which is exceeding the layout screen in the android application.
Android HorizontalScrollView Example
Now open activity_main.xml file in your android application and write the code like as shown below.
activity_main.xml
If you observe above code, we used a HorizontalScrollView to enable horizontal scrolling for linearlayout whenever the content exceeds layout screen.
Output of Android HorizontalScrollView Example
When we run the above example in the android emulator we will get a result like as shown below.
If you observe above result, HorizontalScrollView provided a horizontal scrolling for linearlayout whenever the content exceeds the layout screen.
This is how we can enable scrolling for the content which exceeds layout screen using ScrollView and HorizontalScrollView object based on our requirements.
Источник