You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.8 KiB
80 lines
2.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2009 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:id="@+id/widget"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="true"
|
|
style="@style/WidgetBackground">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:src="@drawable/star_logo" />
|
|
|
|
<TextView
|
|
android:id="@+id/word_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="14dip"
|
|
android:layout_marginBottom="1dip"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
style="@style/Text.WordTitle" />
|
|
|
|
<TextView
|
|
android:id="@+id/word_type"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/word_title"
|
|
android:layout_toLeftOf="@id/icon"
|
|
android:layout_alignBaseline="@id/word_title"
|
|
android:paddingLeft="4dip"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
style="@style/Text.WordType" />
|
|
|
|
<TextView
|
|
android:id="@+id/bullet"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/word_title"
|
|
android:paddingRight="4dip"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
style="@style/BulletPoint" />
|
|
|
|
<TextView
|
|
android:id="@+id/definition"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/word_title"
|
|
android:layout_toRightOf="@id/bullet"
|
|
android:paddingRight="5dip"
|
|
android:paddingBottom="4dip"
|
|
android:includeFontPadding="false"
|
|
android:lineSpacingMultiplier="0.9"
|
|
android:maxLines="4"
|
|
android:fadingEdge="vertical"
|
|
style="@style/Text.Definition" />
|
|
|
|
</RelativeLayout>
|