Darien Figueroa / Mbed OS Final_Program

Dependencies:   USBDevice

Committer:
darienf
Date:
Sun May 02 23:09:04 2021 +0000
Revision:
5:bc128a16232f
Parent:
0:832122ce6748
This is the program that was last used, that has the working temperature and some comments

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 <!-- Copyright (C) 2010 The Android Open Source Project
darienf 0:832122ce6748 3
darienf 0:832122ce6748 4 Licensed under the Apache License, Version 2.0 (the "License");
darienf 0:832122ce6748 5 you may not use this file except in compliance with the License.
darienf 0:832122ce6748 6 You may obtain a copy of the License at
darienf 0:832122ce6748 7
darienf 0:832122ce6748 8 http://www.apache.org/licenses/LICENSE-2.0
darienf 0:832122ce6748 9
darienf 0:832122ce6748 10 Unless required by applicable law or agreed to in writing, software
darienf 0:832122ce6748 11 distributed under the License is distributed on an "AS IS" BASIS,
darienf 0:832122ce6748 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
darienf 0:832122ce6748 13 See the License for the specific language governing permissions and
darienf 0:832122ce6748 14 limitations under the License.
darienf 0:832122ce6748 15 -->
darienf 0:832122ce6748 16
darienf 0:832122ce6748 17 <android.support.v7.view.menu.ListMenuItemView
darienf 0:832122ce6748 18 xmlns:android="http://schemas.android.com/apk/res/android"
darienf 0:832122ce6748 19 android:layout_width="match_parent"
darienf 0:832122ce6748 20 android:layout_height="?attr/dropdownListPreferredItemHeight"
darienf 0:832122ce6748 21 android:minWidth="196dip"
darienf 0:832122ce6748 22 style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem">
darienf 0:832122ce6748 23
darienf 0:832122ce6748 24 <!-- Icon will be inserted here. -->
darienf 0:832122ce6748 25
darienf 0:832122ce6748 26 <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->
darienf 0:832122ce6748 27 <RelativeLayout
darienf 0:832122ce6748 28 android:layout_width="0dip"
darienf 0:832122ce6748 29 android:layout_weight="1"
darienf 0:832122ce6748 30 android:layout_height="wrap_content"
darienf 0:832122ce6748 31 android:layout_gravity="center_vertical"
darienf 0:832122ce6748 32 android:duplicateParentState="true"
darienf 0:832122ce6748 33 style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup">
darienf 0:832122ce6748 34
darienf 0:832122ce6748 35 <TextView
darienf 0:832122ce6748 36 android:id="@+id/title"
darienf 0:832122ce6748 37 android:layout_width="match_parent"
darienf 0:832122ce6748 38 android:layout_height="wrap_content"
darienf 0:832122ce6748 39 android:layout_alignParentTop="true"
darienf 0:832122ce6748 40 android:textAppearance="?attr/textAppearanceLargePopupMenu"
darienf 0:832122ce6748 41 android:singleLine="true"
darienf 0:832122ce6748 42 android:duplicateParentState="true"
darienf 0:832122ce6748 43 android:ellipsize="marquee"
darienf 0:832122ce6748 44 android:fadingEdge="horizontal"
darienf 0:832122ce6748 45 style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" />
darienf 0:832122ce6748 46
darienf 0:832122ce6748 47 <TextView
darienf 0:832122ce6748 48 android:id="@+id/shortcut"
darienf 0:832122ce6748 49 android:layout_width="wrap_content"
darienf 0:832122ce6748 50 android:layout_height="wrap_content"
darienf 0:832122ce6748 51 android:layout_below="@id/title"
darienf 0:832122ce6748 52 android:textAppearance="?attr/textAppearanceSmallPopupMenu"
darienf 0:832122ce6748 53 android:singleLine="true"
darienf 0:832122ce6748 54 android:duplicateParentState="true"
darienf 0:832122ce6748 55 style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" />
darienf 0:832122ce6748 56
darienf 0:832122ce6748 57 </RelativeLayout>
darienf 0:832122ce6748 58
darienf 0:832122ce6748 59 <ImageView
darienf 0:832122ce6748 60 android:id="@+id/submenuarrow"
darienf 0:832122ce6748 61 android:layout_width="wrap_content"
darienf 0:832122ce6748 62 android:layout_height="wrap_content"
darienf 0:832122ce6748 63 android:layout_gravity="center"
darienf 0:832122ce6748 64 android:layout_marginStart="8dp"
darienf 0:832122ce6748 65 android:layout_marginLeft="8dp"
darienf 0:832122ce6748 66 android:scaleType="center"
darienf 0:832122ce6748 67 android:visibility="gone" />
darienf 0:832122ce6748 68
darienf 0:832122ce6748 69 <!-- Checkbox, and/or radio button will be inserted here. -->
darienf 0:832122ce6748 70
darienf 0:832122ce6748 71 </android.support.v7.view.menu.ListMenuItemView>