gecko-dev/mobile/android/base/resources/layout/arrow_popup.xml
Margaret Leibovic 33a05e6bb6 Bug 751205 - (Part 4) Rename resources to be more generic for arrow popups. r=sriram
--HG--
rename : mobile/android/base/resources/drawable-hdpi/doorhanger_popup_bg.9.png => mobile/android/base/resources/drawable-hdpi/arrow_popup_bg.9.png
rename : mobile/android/base/resources/drawable-large-hdpi-v11/doorhanger_popup_bg.9.png => mobile/android/base/resources/drawable-large-hdpi-v11/arrow_popup_bg.9.png
rename : mobile/android/base/resources/drawable-large-mdpi-v11/doorhanger_popup_bg.9.png => mobile/android/base/resources/drawable-large-mdpi-v11/arrow_popup_bg.9.png
rename : mobile/android/base/resources/drawable-large-xhdpi-v11/doorhanger_popup_bg.9.png => mobile/android/base/resources/drawable-large-xhdpi-v11/arrow_popup_bg.9.png
rename : mobile/android/base/resources/drawable-mdpi/doorhanger_popup_bg.9.png => mobile/android/base/resources/drawable-mdpi/arrow_popup_bg.9.png
rename : mobile/android/base/resources/drawable-xhdpi/doorhanger_popup_bg.9.png => mobile/android/base/resources/drawable-xhdpi/arrow_popup_bg.9.png
2013-06-20 08:06:15 -07:00

31 lines
1.3 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/. -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="?attr/arrowPopupWidth"
android:layout_height="wrap_content">
<ScrollView android:layout_width="?attr/arrowPopupWidth"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@drawable/arrow_popup_bg">
<LinearLayout android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"/>
</ScrollView>
<ImageView android:id="@+id/arrow"
android:layout_width="@dimen/menu_popup_arrow_width"
android:layout_height="12dip"
android:layout_marginLeft="20dip"
android:layout_alignParentTop="true"
android:src="@drawable/menu_popup_arrow_top"
android:scaleType="fitXY"/>
</RelativeLayout>