您的位置:首页 > 其它

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

2016-07-05 07:48 597 查看
我的手机管家(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>




设计
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: