47 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
 | |
|     android:orientation="horizontal"
 | |
|     android:id="@+id/month_navigation_bar"
 | |
|     android:paddingTop="@dimen/mtrl_calendar_navigation_top_padding"
 | |
|     android:paddingBottom="@dimen/mtrl_calendar_navigation_bottom_padding"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="wrap_content">
 | |
|     <FrameLayout
 | |
|         android:layout_width="0dp"
 | |
|         android:layout_height="match_parent"
 | |
|         android:layout_weight="1">
 | |
|         <com.google.android.material.button.MaterialButton
 | |
|             android:gravity="start|center_vertical"
 | |
|             android:layout_gravity="start"
 | |
|             android:id="@+id/month_navigation_fragment_toggle"
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="@dimen/mtrl_calendar_navigation_height"
 | |
|             android:insetTop="0dp"
 | |
|             android:insetBottom="0dp"
 | |
|             app:icon="@drawable/material_ic_menu_arrow_down_black_24dp"
 | |
|             app:iconGravity="textEnd"
 | |
|             app:iconPadding="4dp"
 | |
|             style="?attr/materialCalendarYearNavigationButton"/>
 | |
|     </FrameLayout>
 | |
|     <com.google.android.material.button.MaterialButton
 | |
|         android:gravity="center"
 | |
|         android:id="@+id/month_navigation_previous"
 | |
|         android:layout_width="@dimen/mtrl_min_touch_target_size"
 | |
|         android:layout_height="@dimen/mtrl_calendar_navigation_height"
 | |
|         android:insetTop="0dp"
 | |
|         android:insetBottom="0dp"
 | |
|         android:contentDescription="@string/mtrl_picker_a11y_prev_month"
 | |
|         app:icon="@drawable/material_ic_keyboard_arrow_previous_black_24dp"
 | |
|         style="?attr/materialCalendarMonthNavigationButton"/>
 | |
|     <com.google.android.material.button.MaterialButton
 | |
|         android:gravity="center"
 | |
|         android:id="@+id/month_navigation_next"
 | |
|         android:layout_width="@dimen/mtrl_min_touch_target_size"
 | |
|         android:layout_height="@dimen/mtrl_calendar_navigation_height"
 | |
|         android:insetTop="0dp"
 | |
|         android:insetBottom="0dp"
 | |
|         android:contentDescription="@string/mtrl_picker_a11y_next_month"
 | |
|         app:icon="@drawable/material_ic_keyboard_arrow_next_black_24dp"
 | |
|         style="?attr/materialCalendarMonthNavigationButton"/>
 | |
| </LinearLayout>
 |