summaryrefslogtreecommitdiffstats
path: root/res/layout/appwidget_row.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/appwidget_row.xml')
-rw-r--r--res/layout/appwidget_row.xml91
1 files changed, 0 insertions, 91 deletions
diff --git a/res/layout/appwidget_row.xml b/res/layout/appwidget_row.xml
deleted file mode 100644
index c1139665..00000000
--- a/res/layout/appwidget_row.xml
+++ /dev/null
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@null">
-
- <LinearLayout
- android:id="@+id/appwidget_row"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:minHeight="48dip"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:layout_marginTop="4dip"
- android:layout_marginLeft="3dip"
- android:orientation="vertical"
- android:addStatesFromChildren="true"
- android:background="@drawable/bg_event_cal_widget_holo">
- <TextView
- android:id="@+id/title"
- android:visibility="gone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="16dip"
- android:layout_marginRight="7dip"
- android:layout_marginTop="6dip"
- android:layout_marginBottom="4dip"
- android:textSize="14sp"
- android:textStyle="bold"
- android:textColor="@color/appwidget_title"
- android:maxLines="2" />
- <TextView
- android:id="@+id/when"
- android:visibility="gone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="16dip"
- android:layout_marginRight="7dip"
- android:layout_marginTop="-7dip"
- android:layout_marginBottom="4dip"
- android:textSize="14sp"
- android:textColor="@color/appwidget_when"
- android:singleLine="true" />
- <TextView
- android:id="@+id/where"
- android:visibility="gone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="16dip"
- android:layout_marginRight="7dip"
- android:layout_marginTop="-7dip"
- android:layout_marginBottom="4dip"
- android:textSize="14sp"
- android:textColor="@color/appwidget_where"
- android:singleLine="true" />
- </LinearLayout>
-
- <!-- Frame around the color square -->
- <FrameLayout
- android:layout_width="16dip"
- android:layout_height="16dip"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:background="@drawable/frame_event_color_cal_widget_holo" />
-
- <!-- Color square -->
- <FrameLayout
- android:id="@+id/color"
- android:layout_width="10dip"
- android:layout_height="10dip"
- android:layout_marginTop="3dip"
- android:layout_marginLeft="3dip"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true" />
-</RelativeLayout>