码迷,mamicode.com
首页 > 移动开发 > 详细

我的手机管家(9)病毒扫描 界面设计

时间:2016-07-05 08:47:53      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

我的手机管家(9)病毒扫描 界面设计

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView 
        style="@style/title_style"
        android:text="病毒查杀"
        />
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
         >
         <FrameLayout 
             android:id="@+id/antivirus_frame"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content">
             <ImageView 
                 android:layout_width="80dp"
                 android:layout_height="80dp"
                 android:src="@drawable/ic_scanner_malware"
              />
              <ImageView 
                  android:id="@+id/antivirus_scanning"
                 android:layout_width="80dp"
                 android:layout_height="80dp"
                 android:src="@drawable/act_scanning_03"
                 />
         </FrameLayout>

        <TextView
            android:id="@+id/antivirus_status"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="40dp"
            android:layout_marginTop="15dp"
            android:layout_toRightOf="@id/antivirus_frame"
            android:text="正 在 初 始 化 杀 毒 引擎 ..." />
        <ProgressBar
            android:id="@+id/progressBar1"
            style="?android:attr/progressBarStyleHorizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/antivirus_status"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:layout_marginTop="3dp"
            android:layout_toRightOf="@id/antivirus_frame"
            android:progressDrawable="@drawable/custom_progress" />
    </RelativeLayout>
    <ScrollView 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
        <LinearLayout
          android:id="@+id/antivirus_layout"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="vertical"
        >
        </LinearLayout>
    </ScrollView>
</LinearLayout>

技术分享

设计

我的手机管家(9)病毒扫描 界面设计

标签:

原文地址:http://www.cnblogs.com/chengbao/p/5642248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!