mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
b84d49e4a1
--HG-- extra : rebase_source : cd4b8ab06669bc856bded04392d71abc6e8961ac
57 lines
2.6 KiB
XML
57 lines
2.6 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/. -->
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/background_light">
|
|
|
|
<LinearLayout android:id="@+id/prompt"
|
|
android:focusable="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:minHeight="@dimen/search_row_height"
|
|
android:gravity="center_vertical"
|
|
android:padding="10dip">
|
|
|
|
<TextView android:id="@+id/suggestions_prompt_title"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="0dp"
|
|
android:layout_marginLeft="6dip"
|
|
android:layout_weight="1"
|
|
android:textAppearance="@style/TextAppearance.Widget.SuggestionsPrompt"/>
|
|
|
|
<TextView android:id="@+id/suggestions_prompt_yes"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginLeft="15dip"
|
|
android:textAppearance="@style/TextAppearance.Widget.SuggestionsPrompt"
|
|
android:background="@drawable/suggestion_selector"
|
|
android:paddingLeft="15dp"
|
|
android:paddingRight="15dp"
|
|
android:paddingTop="7dp"
|
|
android:paddingBottom="7dp"
|
|
android:focusable="true"
|
|
android:text="@string/button_yes" />
|
|
|
|
<TextView android:id="@+id/suggestions_prompt_no"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginLeft="6dip"
|
|
android:textAppearance="@style/TextAppearance.Widget.SuggestionsPrompt"
|
|
android:background="@drawable/suggestion_selector"
|
|
android:nextFocusRight="@+id/suggestions_prompt_no"
|
|
android:paddingLeft="15dp"
|
|
android:paddingRight="15dp"
|
|
android:paddingTop="7dp"
|
|
android:paddingBottom="7dp"
|
|
android:focusable="true"
|
|
android:text="@string/button_no" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|