Android studio tablayout setcustomview

Содержание
  1. Custom Tablayout Android Studio With Custom View And Icon
  2. Download Source Code for Custom Tablayout Android example
  3. Step 1: Making Base Project
  4. Step 2: Adding custom_tab.xml file
  5. Step 3: Updating MainActivity.java
  6. Kotlin Version
  7. Делаем вкладки с помощью TabLayout
  8. Библиотека Android Support Design
  9. Создание TabLayout
  10. Создание фрагментов
  11. Подключение FragmentPagerAdapter
  12. Настройка вкладки
  13. Настройка TabLayout
  14. Создание стиля для TabLayout
  15. Добавление иконок в TabLayout
  16. Добавление иконок и текста в TabLayout
  17. Добавление пользовательской разметки в TabLayout
  18. Получение или выбор текущей страницы
  19. Использование вкладок без фрагментов
  20. Ещё вариант реализации вкладок
  21. Делаем вкладки с помощью TabLayout : 3 комментария
  22. Android Tablayout Tutorial | Custom Fragments,ViewPager,Swipe
  23. 1. Android Tablayout Example With Fragments,ViewPager
  24. Step 1: Create a new project in Android Studio.
  25. Step 2: Update build.gradle(Module:app) file
  26. Step 3: Updating colors.xml
  27. Step 4: Preparing three fragments
  28. Step 5: Updating MainActivity
  29. Step 6: Explanation of MainActivity.java
  30. 2. Android Change ActionBar/Toolbar Icon/Text in Each tab
  31. Step 1: Creating Base Project
  32. Step 2: Adding images to drawable
  33. Step 3: Updating styles.xml
  34. Step 4: Creating toolbar.xml file
  35. Step 5: Developing OneActivity
  36. Step 6: Creating menu resource directory
  37. Step 7: Updating all fragments
  38. 3. Android Custom Tablayout Example
  39. Step 1: Making Base Project
  40. Step 2: Adding custom_tab.xml file
  41. Step 3: Updating MainActivity.java
  42. 4. Android Change Tab Icon/Text/Background Color/Text Color When Selected
  43. Output
  44. Step 1. Update colors.xml file
  45. Step 2. Necessary strings
  46. Step 3. Various Icons
  47. Step 4. Making Drawable resource files
  48. Step 5. Four Fragments for Four Tabs
  49. Step 6. Main Activity
  50. Update Main Activity java file
  51. Step 7. Explanation of Main Activity
  52. unselectElse
  53. removeAllFragment()
  54. One thought on “Android Tablayout Tutorial | Custom Fragments,ViewPager,Swipe”

Custom Tablayout Android Studio With Custom View And Icon

Custom Tablayout Android Studio example creates custom tablayout with custom view.

We will create a custom view for tablayout in this example.

If you don’t have go through basic tablayout tutorial, then visit android tablayout tutorial.

If you want to change toolbar menu items with every tab or fragment, the visit android tblayout toolbar menu items.

You can use both icon and tab name in custom tablayout.

There are Four ways to set icons with respect to text(tab name)

  1. Left side of text,
  2. Right side of text,
  3. Above text and
  4. Below text.

First, check the output of a tutorial, then we will develop it.

Download Source Code for Custom Tablayout Android example

Step 1: Making Base Project

After you have completed above tutorial, you will have one android project with tablayout.

Make sure you followed all the steps of above tutorial. It is must for going further with this example.

Now follow below steps.

Step 2: Adding custom_tab.xml file

Create a new resource directory named custom_tab.xml and add below code

This custom_tab.xml file is the core of this tutorial.

You can customize all of your tabs here with various icons, tab names and colors of tab names.

Step 3: Updating MainActivity.java

Update MainActivity.java as per below code

Now consider below lines

headerView is the object of View class and is inflated with layout resource file named custom_tab.xml

In above lines, linearlayoutOne, linearlayout2 and linearlayout3 are inflated with headerView.

We will set custom view for each tab with the help of below source code lies.

Kotlin Version

Share resources of demonuts with friends in social media to help others grow as well.

You can give your review in the comment section.

You can also use comment section if you have any queries in making above tutorial. Thank you.

Источник

Делаем вкладки с помощью TabLayout

Сейчас вкладки лучше всего реализовывать за счёт использования ViewPager с пользовательским «индикатором вкладок» сверху. В этой статье мы будем использовать TabLayout от Google, включенный в библиотеку Android Support Design в Android 6.0 Marshmallow (API 23).

До Android Marshmallow самым простым способом создания вкладок с помощью фрагментов было использование вкладок ActionBar. Однако, все методы, связанные с режимами навигации в классе ActionBar (такие как setNavigationMode(), addTab(), selectTab() и т.д.) на данный момент являются устаревшими.

Библиотека Android Support Design

Перед началом работы с вкладками, нужно добавить необходимую библиотеку. Чтобы добавить библиотеку в свой проект, нужно в файле build.gradle модуля приложения добавить следующую зависимость в блок dependencies.

Создание TabLayout

Просто добавьте android.support.design.widget.TabLayout, который будет использоваться для отображения различных параметров вкладок, в код разметки. Компонент android.support.v4.view.ViewPager будет использоваться для создания страницы, отображающей фрагменты, которые мы создадим далее.

Создание фрагментов

Теперь, когда у нас есть ViewPager и вкладки в разметке, мы можем перейти к определению содержимого каждой из вкладок. Поскольку каждая вкладка представляет собой только фрагмент, нам необходимо создать и определить Fragment, который нужно показать. В зависимости от ваших требований, в вашем приложении может быть один или несколько фрагментов.

Читайте также:  Бади рут для андроид

В папке res/layout создадим файл fragment_page.xml и определим в нём код разметки, который будет отображаться на экране при выборе определённой вкладки.

Теперь создадим класс PageFragment и определим в нём логику подключения для фрагмента.

Подключение FragmentPagerAdapter

Следующее, что нужно сделать, это реализовать адаптер для вашего ViewPager, который контролирует порядок вкладок, заголовков и связанного с ними контента. Наиболее важными методами для реализации здесь являются getPageTitle(int position), который используется для получения заголовка нужно вкладки, и getItem(int position), который определяет фрагмент для каждой вкладки.

Настройка вкладки

Наконец, нам нужно прикрепить наш ViewPager к SampleFragmentPagerAdapter, а затем настроить вкладки с помощью двух шагов:

  • В методе onCreate() активности определим ViewPager и подключим адаптер.
  • Установим ViewPager в TabLayout, чтобы подключить пейджер с вкладками.

Посмотрим, что получилось:

Настройка TabLayout

Существует множество атрибутов, которые вы можете использовать для настройки поведения TabLayout, например:

Название Параметры Описание
tabBackground @drawable/image Фон, применяемый к вкладкам
tabGravity center, fill Гравитация вкладок
tabIndicatorColor @color/blue Цвет линии индикатора
tabIndicatorHeight @dimen/tabh Высота линии индикатора
tabMaxWidth @dimen/tabmaxw Максимальная ширина вкладки
tabMode fixed, scrollable Выбор режима — фиксированные вкладки или прокручиваемый список
tabTextColor @color/blue Цвет текста на вкладке

Здесь вы можете посмотреть все атрибуты для TabLayout.

Создание стиля для TabLayout

Как правило, цвет индикатора вкладки устанавливается как accent, определённый в вашей теме Material Design. Вы можете переопределить этот цвет, создав свой собственный стиль в файле res/values/styles.xml и затем применить этот стиль к TabLayout.

Вы можете переопределить этот стиль для TabLayout в коде разметки:

Ниже вы можете увидеть пример ещё одного стиля, который можно задать для TabLayout:

Добавление иконок в TabLayout

В настоящее время класс TabLayout не предоставляет модель, которая позволяет добавлять иконки для вкладок. Однако вы можете вручную добавить иконки после настройки TabLayout.

Внутри класса FragmentPagerAdapter вы можете удалить строку getPageTitle() или просто вернуть null.

После настройки TabLayout в классе активности, вы можете использовать функцию getTabAt() для установки иконки:

Добавление иконок и текста в TabLayout

Другой подход — использовать SpannableString для добавление иконок и текста в TabLayout. Снова перепишем метод getPageTitle().

По умолчанию, вкладка, созданная TabLayout, устанавливает для свойства textAllCaps значение true, что предотвращает визуализацию ImageSpans. Вы можете переопределить это поведение. изменив в styles.xml свойство tabTextAppearance.

Обратите внимание на дополнительные пробелы, которые добавляются перед заголовком вкладки при создании класса SpannableString. Пустое пространство используется для размещения иконки, чтобы название отображалось полностью. В зависимости от того, где вы хотите разместить иконку, вы можете указать начало диапазона и его конец в методе setSpan().

Добавление пользовательской разметки в TabLayout

В некоторых случаях вместо разметки вкладки по умолчанию мы можем использовать собственную разметку для каждой вкладки. Чтобы добиться этого, переберём все вкладки после прикрепления их к ViewPager в коде активности.

Теперь добавим метод getTabView() в класс SampleFragmentPagerAdapter.

Таким образом, можно настроить любую вкладку в адаптере.

Получение или выбор текущей страницы

С последними обновлениями библиотеки Android Suppoty Design вы также можете получить выбранную позицию вкладки, вызвав метод getSelectedTabPosition(). Если вам нужно сохранить или восстановить выбранную позицию вкладки во время поворота экрана или других изменений конфигурации, этот метод полезен для восстановления исходной позиции.

Во-первых, переместите экземпляры tabLayout и viewPager в глобальные переменные класса активности.

Во-вторых, мы можем сохранить и восстановить позицию вкладки, используя методы onSaveInstanceState() и onRestoreInstanceState().

Использование вкладок без фрагментов

В случае, если вы не хотите использовать в своём приложении фрагменты, вы можете воспользоваться классом android.support.v4.view.PagerAdapter, как, например, в нашем приложении «Карточки для детей«.

Здесь вместо фрагментов в ViewPager передаётся адаптер, наследующий от PagerAdapter. Его код можно увидеть ниже.

Установка адаптера аналогична способам выше, просто вызываем метод setAdapter() и передаёт в него экземпляр класса TabAdapter.

Ещё вариант реализации вкладок

Также вы можете создать свои собственные вкладки с помощью шагов ниже. Такой подход используется в нашем приложении «Менеджер паролей для Wi-Fi сетей«.

Для этого в разметке нужно использовать компоненты TabHost и TabWidget. Внутри с помощью FrameLayout мы задаём, какой контент будет отображаться на экране.

Затем в коде активности добавим следующий код для определения этих компонент и настройки вкладок.

В этом случае переключать вкладки можно легко с помощью метода у TabHost setCurrentTab(int position).

Делаем вкладки с помощью TabLayout : 3 комментария

Я создал ретрофит запрос, получил данные и хочу установить количество вкладок соответственно количеству полученных строк. Куда в адаптере мне вставить этот код? Я создал AsyncTask, но не получается нигде изменить значение количества вкладок, которое задано по умолчанию.

Читайте также:  Error android os networkonmainthreadexception

Источник

Android Tablayout Tutorial | Custom Fragments,ViewPager,Swipe

Whatsapp is using Android tablayout for basic navigation.

In today’s Android tablayout example, we will develop that kind of structure programmatically.

1. Android Tablayout Example With Fragments,ViewPager

Android tablayout uses fragments, material design and view pager as basic components.

First, watch the output, then we will prepare it.

Step 1: Create a new project in Android Studio.

Always try to create new project in android studio with empty activity.

Step 2: Update build.gradle(Module:app) file

Add below in build.gradle(Module:app) file

Whole source code for build.gradle(Module:app)

Step 3: Updating colors.xml

Go to the res->values->colors.xml directory

update colors.xml as below

Step 4: Preparing three fragments

Create three fragments and give them name as “OneFragment,” “TwoFragment,” and “ThreeFragment.

In every application with tab layout, use of fragment is must. Gmail is also using same concept.

Fragments simplifies the back stack problem arises if we use activity instead of fragment.

Here, we are using three fragments. You can increase or decrease this number as per your requirements.

Add below code in fragment_one.xml

Add following in OneFragment.java

Copy below source code in fragment_two.xml

Copy following code in TwoFragment.java

Add below code in fragment_three.xml

Paste below code in ThreeFragment.java

Step 5: Updating MainActivity

update activity_main.xml as below

Update MainActivity.java as per following

Step 6: Explanation of MainActivity.java

First of all setupViewPager() method is called.

Consider below source code

In above method, we have added each fragment to view pager adapter.

addFragment() method have two parameters. First have the object of fragments and second have the name of that fragment.

The value of Second parameter will shown as the name of the tab.

After that, ViewPagerAdapter class is defined. You do not need to do any modification in this class.

2. Android Change ActionBar/Toolbar Icon/Text in Each tab

We will learn about tablayout android studio example.

Tablayout android studio tutorial will guide you to make different actionbar/toolbar menuitems for different colors.

In whatsapp, when you slide fragments menu items are also changing. We will develop this functionality in tablayout android tutorial.

First, check the output of this example.

Step 1: Creating Base Project

After you have completed above tutorial, you will have one android project with simple tablayout.

Now follow below steps.

Step 2: Adding images to drawable

Download images and copy them into “drawable” directory

Step 3: Updating styles.xml

Update styles.xml file as per below source code

Step 4: Creating toolbar.xml file

Create a new resource file named toolbar.xml and paste below

Step 5: Developing OneActivity

Create a new activity named “OneActivity.”

Copy following in activity_one.xml

Add following source code into OneActivity.java class

Step 6: Creating menu resource directory

Create a new resource directory named “menu” inside the “res” directory as per below image.

Inside “menu,” make three new xml files and name them as one_menu.xml,two_menu.xml and three_menu.xml

Add below source code in one_menu.xml

Add following in two_menu.xml

Add below in three_menu.xml

Step 7: Updating all fragments

Update OneFragment.java as per below code

Update TwoFragment.java as per following

Update ThreeFragment.java like below

3. Android Custom Tablayout Example

Custom Tablayout Android Studio example creates custom tablayout with custom view.

We will create a custom view for tablayout in this example.

You can use both icon and tab name in custom tablayout.

There are Four ways to set icons with respect to text(tab name)

  1. Left side of text,
  2. Right side of text,
  3. Above text and
  4. Below text.

First, check the output of a tutorial, then we will develop it.

Step 1: Making Base Project

After you have completed above tutorial, you will have one android project with tablayout.

Make sure you followed all the steps of above tutorial. It is must for going further with this example.

Now follow below steps.

Step 2: Adding custom_tab.xml file

Create a new resource directory named custom_tab.xml and add below code

This custom_tab.xml file is the core of this tutorial.

You can customize all of your tabs here with various icons, tab names and colors of tab names.

Читайте также:  Проигрыватель sony для андроид

Step 3: Updating MainActivity.java

Update MainActivity.java as per below code

Now consider below lines

headerView is the object of View class and is inflated with layout resource file named custom_tab.xml

In above lines, linearlayoutOne, linearlayout2 and linearlayout3 are inflated with headerView.

We will set custom view for each tab with the help of below source code lies.

4. Android Change Tab Icon/Text/Background Color/Text Color When Selected

Android change tab icon when selected tutorial with example is tonight’s hot topic.

In this tutorial, you will learn how to change tab icon, tab text, tab icon color, tab text color, tab background color, indicator color programmatically when user selects the tab.

Developers use these features to indicate the current working tab to the user.

Output

What will be the final output at the end of this example?

Check it out in the below video.

Step 1. Update colors.xml file

Add some necessary colors in the colors.xml file which is located at the values->colors.xml path.

Step 2. Necessary strings

A file which is available at values->strings.xml needed to be replaced with following source code

Step 3. Various Icons

As we want to change the color or may be the whole icon when the user clicks on the tab, we need to add different icons for every situation.

There should be different icons for both events, when the tab is selected and when it is deselected.

Click on below link to download necessary icons for this practical example tutorial.

Now copy all these icons in the mipmap folder.

Step 4. Making Drawable resource files

In the drawable folder, make one new resource file and name it like roundback.xml

Copy the following code in it

Create another resource file named roundleft.xml and add the below code

Step 5. Four Fragments for Four Tabs

There are four tabs in this android studio example so we have to create separate fragments for each tab.

Make first fragment with name IntroFragment.

Add below code in IntroFragment.java file

Code for fragment_intro.xml

Now second fragment’s name is Location.

LocationFragment.java

fragment_location.xml

Third fragment is Login Fragment

LoginFragment.java

fragment_login.xml

Product Fragment is the last one.

ProductFragment.java

fragment_product.xml

Step 6. Main Activity

In the last step, you need to add required code in Main Activity’s both files.

In the activity_main.xml, add following code

I have designed four Linear Layouts, which represents the four tabs.

Each Linear layout includes one imageview and one textview.

ImageView represnts the tab icon and Textview represents the tab text.

You can add other UI elements as per your requirement.

After four linear layouts, there is a frame layout in which fragment for each tab will be loaded.

Update Main Activity java file

Finally, time to update MainActivity.java file

Step 7. Explanation of Main Activity

In the main activity, I have defined four linear layouts which are representing four tabs as per below.

Now, I have set onclick listeners for each above linear layout.

It will work when the user clicks on any tab.

Now you might have noticed that two methods are present in each click listener.

Both these methods are described below.

unselectElse

This method will deselect the current selected tab.

For example, user first clicks on Login fragment, so the icon color and text color for login tab is changes to white.

Now user selects or clicks on the product fragment, so the icon and text color for product is changed to white but here, login tab is also white.

If we do not change icon and text color of login tab back to black, there will be two selected tabs which is not ideal condition.

so unselectElse method will make the look and feel of selected tab back to the deselected.

Code for this method

removeAllFragment()

This method will simply empty the fragment backstack.

Whenever new fragment is loaded in the frame layout, it is added into the backstack also.

This method will be helpful to overcome this issue.

The second parameter of this method will decide whether to add newly loaded fragment into the backstack or not.

Checkout it’s implementation

That was all the details about android change tab icon when selected.

One thought on “Android Tablayout Tutorial | Custom Fragments,ViewPager,Swipe”

Keep sharing sir. You always post awesome articles .

Источник

Оцените статью