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.
51 lines
2.1 KiB
51 lines
2.1 KiB
<?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.
|
|
-->
|
|
<com.android.calendar.ExpandableTextView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dip"
|
|
android:layout_marginLeft="@dimen/event_info_desc_margin_left"
|
|
android:visibility="gone"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/expandable_text"
|
|
style="?android:attr/textAppearanceSmall"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/event_info_desc_margin_right"
|
|
android:autoLink="all"
|
|
android:ellipsize="end"
|
|
android:textIsSelectable="true"
|
|
android:textColor="@color/event_info_description_color"
|
|
android:textSize="@dimen/event_info_text_size" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/expand_collapse"
|
|
style="?android:attr/textAppearanceSmall"
|
|
android:layout_width="32dip"
|
|
android:layout_height="32dip"
|
|
android:layout_marginBottom="0dip"
|
|
android:paddingRight="0dip"
|
|
android:layout_gravity="right"
|
|
android:gravity="center_vertical|right"
|
|
android:visibility="gone"
|
|
android:src="@drawable/ic_expand_small_holo_light"
|
|
android:background="#00000000"
|
|
android:textColor="@color/event_info_description_color" />
|
|
|
|
</com.android.calendar.ExpandableTextView> |