Files
location_ringer/LocationRinger/res/layout/get_location_widget.xml
2012-07-23 00:29:49 -04:00

49 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:background="@drawable/appwidget_dark_bg" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:orientation="vertical" >
<TextView
android:id="@+id/text"
style="@style/styleName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center|left"
android:text="@string/current_ringer" />
<TextView
android:id="@+id/widget_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center|left"
android:text="test"
tools:ignore="HardcodedText" />
</LinearLayout>
<ImageButton
android:id="@+id/widget_get_location_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/linearLayout1"
android:background="@drawable/ic_launcher"
android:contentDescription="@string/start_location_service" />
</RelativeLayout>