mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 15:00:26 +00:00
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/widget_header_height"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/widget_bg">
|
|
|
|
<ImageView android:id="@+id/logo_button"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:padding="@dimen/widget_padding"
|
|
android:background="@drawable/widget_button_left"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/widget_icon"/>
|
|
|
|
<LinearLayout android:id="@+id/new_tab_button"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@string/new_tab"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/widget_button_right">
|
|
|
|
<TextView android:id="@+id/new_tab_button_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/ic_widget_new_tab"
|
|
android:drawablePadding="@dimen/widget_padding"
|
|
android:gravity="center"
|
|
android:text="@string/new_tab"
|
|
android:fontFamily="sans-serif"
|
|
android:textSize="@dimen/widget_text_size"
|
|
android:textColor="@color/widget_text_color"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|