| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2011 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. |
| --> |
| |
| <FrameLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| android:id="@android:id/content" |
| android:layout_height="wrap_content" |
| android:layout_width="match_parent" |
| android:minHeight="48dp" |
| android:background="@drawable/bg_event_cal_widget_holo"> |
| |
| <LinearLayout |
| android:id="@+id/widget_row" |
| android:layout_height="wrap_content" |
| android:layout_width="match_parent" |
| android:paddingBottom="2dp" |
| android:orientation="horizontal" |
| android:minHeight="48dp" > |
| <ImageView |
| android:id="@+id/agenda_item_color" |
| android:layout_marginLeft="4dp" |
| android:layout_marginTop="8dp" |
| android:layout_width="16dip" |
| android:layout_height="16dip" |
| android:scaleType="fitXY" |
| android:layout_alignParentLeft="true" |
| android:layout_marginRight="4dip" /> |
| |
| <LinearLayout |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_gravity="center_vertical" |
| android:layout_marginRight="4dip" |
| android:orientation="vertical"> |
| <TextView |
| android:id="@+id/title" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:maxLines="2" |
| android:textSize="14sp" |
| android:textStyle="bold" |
| android:ellipsize="marquee" |
| android:textColor="@color/appwidget_title" |
| style="?android:attr/textAppearanceMediumInverse" /> |
| |
| <TextView |
| android:id="@+id/when" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_below="@+id/title" |
| android:layout_alignLeft="@+id/title" |
| android:singleLine="true" |
| android:textSize="12sp" |
| android:ellipsize="marquee" |
| android:textColor="@color/appwidget_when" |
| style="?android:attr/textAppearanceSmallInverse" /> |
| |
| <TextView |
| android:id="@+id/where" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_below="@+id/when" |
| android:layout_alignLeft="@+id/title" |
| android:singleLine="true" |
| android:ellipsize="marquee" |
| android:paddingBottom="2dip" |
| android:textSize="12sp" |
| android:textColor="@color/appwidget_where" |
| style="?android:attr/textAppearanceSmallInverse" /> |
| </LinearLayout> |
| </LinearLayout> |
| |
| </FrameLayout> |