标签:
我的手机管家(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>
设计
标签:
原文地址:http://www.cnblogs.com/chengbao/p/5642248.html