menu_navigation.xml (1611B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 6 <LinearLayout 7 xmlns:android="http://schemas.android.com/apk/res/android" 8 xmlns:app="http://schemas.android.com/apk/res-auto" 9 android:layout_width="match_parent" 10 android:layout_height="wrap_content" 11 android:orientation="horizontal"> 12 13 <ImageButton 14 android:id="@+id/forward" 15 android:layout_width="0dp" 16 android:layout_height="48dp" 17 android:layout_weight="1" 18 android:background="?android:attr/selectableItemBackgroundBorderless" 19 android:contentDescription="@string/content_description_forward" 20 app:srcCompat="@drawable/mozac_ic_forward_24"/> 21 22 <ImageButton 23 android:id="@+id/refresh" 24 android:layout_width="0dp" 25 android:layout_height="48dp" 26 android:layout_weight="1" 27 android:background="?android:attr/selectableItemBackgroundBorderless" 28 android:contentDescription="@string/content_description_reload" 29 app:srcCompat="@drawable/mozac_ic_arrow_clockwise_24"/> 30 31 <ImageButton 32 android:id="@+id/stop" 33 android:layout_width="0dp" 34 android:layout_height="48dp" 35 android:layout_weight="1" 36 app:srcCompat="@drawable/mozac_ic_stop" 37 android:background="?android:attr/selectableItemBackgroundBorderless" 38 android:contentDescription="@string/content_description_stop" /> 39 </LinearLayout>