1<?xml version="1.0" encoding="UTF-8"?> 2<view 3id="IMAGE_WIN" 4isusecommonskin="yes"> 5 <window 6 id="IMAGE_WIN" 7 top="0" 8 left="0" 9 width="320" 10 height="240" 11 isrelease="yes" 12 onshow="IMAGE_WIN_Onshow" 13 onhide="IMAGE_WIN_Onhide" 14 ontimer="IMAGE_WIN_Ontimer" 15 normalskin="GROUP_SKIN" 16 opacity="255" 17 winlevel="0" 18 > 19 20 <image 21 id="PNG_IMAGE" 22 top="40" 23 left="10" 24 width="140" 25 height="95" 26 isrelease="yes" 27 normalskin="GROUP_SKIN" 28 transparent="yes" 29 image="./res/pic/IMG_PNG.png" 30 alignment="hcenter|vcenter" 31 /> 32 33 <image 34 id="JPG_IMAGE" 35 top="40" 36 left="170" 37 width="140" 38 height="95" 39 isrelease="yes" 40 normalskin="GROUP_SKIN" 41 transparent="yes" 42 image="./res/pic/IMG_JPG.jpg" 43 alignment="hcenter|vcenter" 44 /> 45 46 <image 47 id="BMP_IMAGE" 48 top="145" 49 left="10" 50 width="140" 51 height="95" 52 isrelease="yes" 53 normalskin="GROUP_SKIN" 54 transparent="yes" 55 image="./res/pic/IMG_BMP.bmp" 56 alignment="hcenter|vcenter" 57 /> 58 59 <imageex 60 id="SHOW_IMAGE" 61 top="145" 62 left="170" 63 width="140" 64 height="95" 65 isrelease="yes" 66 normalskin="GROUP_SKIN" 67 widgetposmirror="yes" 68 widgetinteriormirror="yes" 69 transparent="yes" 70 image="./res/pic/IMG_GIF.gif" 71 alignment="hcenter|vcenter" 72 postype="center"/> 73 74 </window> 75</view> 76 77<!-- 78 * Copyright (c) 2022 HiSilicon (Shanghai) Technologies CO., LIMITED. 79 * Licensed under the Apache License, Version 2.0 (the "License"); 80 * you may not use this file except in compliance with the License. 81 * You may obtain a copy of the License at 82 * 83 * http://www.apache.org/licenses/LICENSE-2.0 84 * 85 * Unless required by applicable law or agreed to in writing, software 86 * distributed under the License is distributed on an "AS IS" BASIS, 87 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 88 * See the License for the specific language governing permissions and 89 * limitations under the License. 90-->