8466f79a06
- this syncs up the UX repo with the developer repo so that the assets now match. We should be able to do wholesale drops/diffs from now on. - lots of changes to widget so that it is (mostly) up to spec now, and matches the preview Bug: 5225385 Bug: 5205578 Bug: 4320895 Change-Id: I8ccbadcfc17cdb406599497edc91165809f55d68
58 lines
2.0 KiB
XML
58 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2008 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.
|
|
-->
|
|
|
|
<!-- non-xlarge -->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="#ffd5d5d5"
|
|
style="@style/attachment_container">
|
|
|
|
<ImageView
|
|
android:src="@drawable/ic_attachment_holo_light"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<!-- Attachment name and size -->
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_weight="1.0"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<TextView android:id="@+id/attachment_name"
|
|
style="@style/attachment_name" />
|
|
|
|
<TextView android:id="@+id/attachment_size"
|
|
style="@style/attachment_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Remove button -->
|
|
<ImageView android:id="@+id/attachment_delete"
|
|
android:src="@drawable/ic_remove_attachment_holo_light"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="left"
|
|
android:layout_marginLeft="20dip"
|
|
android:layout_gravity="center_vertical|left"
|
|
android:clickable="true" />
|
|
|
|
|
|
</LinearLayout>
|