Darien Figueroa / Mbed OS Final_Program

Dependencies:   USBDevice

Committer:
darienf
Date:
Wed Apr 07 22:37:59 2021 +0000
Revision:
0:832122ce6748
painnie

Who changed what in which revision?

UserRevisionLine numberNew contents of line
darienf 0:832122ce6748 1 <?xml version="1.0" encoding="utf-8"?>
darienf 0:832122ce6748 2 <!--
darienf 0:832122ce6748 3 ~ Copyright (C) 2015 The Android Open Source Project
darienf 0:832122ce6748 4 ~
darienf 0:832122ce6748 5 ~ Licensed under the Apache License, Version 2.0 (the "License");
darienf 0:832122ce6748 6 ~ you may not use this file except in compliance with the License.
darienf 0:832122ce6748 7 ~ You may obtain a copy of the License at
darienf 0:832122ce6748 8 ~
darienf 0:832122ce6748 9 ~ http://www.apache.org/licenses/LICENSE-2.0
darienf 0:832122ce6748 10 ~
darienf 0:832122ce6748 11 ~ Unless required by applicable law or agreed to in writing, software
darienf 0:832122ce6748 12 ~ distributed under the License is distributed on an "AS IS" BASIS,
darienf 0:832122ce6748 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
darienf 0:832122ce6748 14 ~ See the License for the specific language governing permissions and
darienf 0:832122ce6748 15 ~ limitations under the License
darienf 0:832122ce6748 16 -->
darienf 0:832122ce6748 17
darienf 0:832122ce6748 18 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
darienf 0:832122ce6748 19 android:id="@+id/status_bar_latest_event_content"
darienf 0:832122ce6748 20 android:layout_width="match_parent"
darienf 0:832122ce6748 21 android:layout_height="128dp"
darienf 0:832122ce6748 22 >
darienf 0:832122ce6748 23 <ImageView android:id="@+id/icon"
darienf 0:832122ce6748 24 android:layout_width="@dimen/notification_large_icon_width"
darienf 0:832122ce6748 25 android:layout_height="@dimen/notification_large_icon_height"
darienf 0:832122ce6748 26 android:scaleType="centerCrop"
darienf 0:832122ce6748 27 />
darienf 0:832122ce6748 28 <include layout="@layout/notification_media_cancel_action"
darienf 0:832122ce6748 29 android:layout_width="48dp"
darienf 0:832122ce6748 30 android:layout_height="48dp"
darienf 0:832122ce6748 31 android:layout_marginLeft="2dp"
darienf 0:832122ce6748 32 android:layout_marginRight="2dp"
darienf 0:832122ce6748 33 android:layout_alignParentRight="true"/>
darienf 0:832122ce6748 34 <include layout="@layout/notification_template_lines"
darienf 0:832122ce6748 35 android:layout_width="fill_parent"
darienf 0:832122ce6748 36 android:layout_height="wrap_content"
darienf 0:832122ce6748 37 android:layout_gravity="fill_vertical"
darienf 0:832122ce6748 38 android:layout_marginLeft="@dimen/notification_large_icon_width"
darienf 0:832122ce6748 39 android:layout_marginStart="@dimen/notification_large_icon_width"
darienf 0:832122ce6748 40 android:layout_toLeftOf="@id/cancel_action"
darienf 0:832122ce6748 41 android:layout_toStartOf="@id/cancel_action"/>
darienf 0:832122ce6748 42 <LinearLayout
darienf 0:832122ce6748 43 android:id="@+id/media_actions"
darienf 0:832122ce6748 44 android:layout_width="match_parent"
darienf 0:832122ce6748 45 android:layout_height="48dp"
darienf 0:832122ce6748 46 android:layout_alignParentBottom="true"
darienf 0:832122ce6748 47 android:layout_marginLeft="12dp"
darienf 0:832122ce6748 48 android:layout_marginRight="12dp"
darienf 0:832122ce6748 49 android:orientation="horizontal"
darienf 0:832122ce6748 50 android:layoutDirection="ltr"
darienf 0:832122ce6748 51 >
darienf 0:832122ce6748 52 <!-- media buttons will be added here -->
darienf 0:832122ce6748 53 </LinearLayout>
darienf 0:832122ce6748 54 <ImageView
darienf 0:832122ce6748 55 android:layout_width="match_parent"
darienf 0:832122ce6748 56 android:layout_height="1dp"
darienf 0:832122ce6748 57 android:layout_above="@id/media_actions"
darienf 0:832122ce6748 58 android:id="@+id/action_divider"
darienf 0:832122ce6748 59 android:background="?android:attr/dividerHorizontal" />
darienf 0:832122ce6748 60 </RelativeLayout>