標籤:
My Phone管家(14) 緩衝處理 介面設計
介面簡單不介紹了
<?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" android:paddingBottom="15dp" > <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#b3b3b3" > <Button android:id="@+id/acc_btn1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:onClick="onControl" android:text="開始掃描" /> <TextView android:id="@+id/acc_tv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/acc_btn1" android:layout_alignBottom="@+id/acc_btn1" android:layout_alignParentLeft="true" android:text="掃描資訊" /> </RelativeLayout> <ProgressBar android:id="@+id/progressBar1" style="?android:attr/progressBarStyleHorizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="2dp" android:background="@drawable/custom_progress" /> <TextView android:id="@+id/acc_tv2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:singleLine="true" android:text="正在掃描..." /> <ScrollView android:layout_width="match_parent" android:layout_height="wrap_content" > <LinearLayout android:id="@+id/cache_linear" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > </LinearLayout> </ScrollView></LinearLayout>
My Phone管家(14) 緩衝處理 介面設計