android嚮導佈局優化
在文章中我們談到了android嚮導的實現方式,之前遺留了一個問題,嚮導按鈕與頁面內容重疊,在Map那個頁面特別明顯。
這個問題現在有解決方法了,其實很簡單,是佈局有點問題。
之前使用的是RelativeLayout,然後屬性都是fill_parent,因此就重疊了。
現在將佈局調整為LinerLayout,並使用android:weightSum屬性。將底部的按鈕權重設定為0.1,頁面設定為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=“wrap_content”
android:weightSum=“1.0”
android:orientation=“vertical” >
<FrameLayout
android:id=“@+id/wizard_content”
android:layout_width=“fill_parent”
android:layout_height=“0dp”
android:layout_weight=“0.90”>
</FrameLayout>
<LinearLayout
xmlns:android=“http://schemas.android.com/apk/res/android”
android:layout_width=“fill_parent”
android:layout_height=“0dp”
android:layout_weight=“0.10”
android:orientation=“horizontal”
<Button
android:id=“@+id/wizard_previous_btn”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“Previous” />
<Button
android:id=“@+id/wizard_next_btn”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“Next” />
<Button
android:id=“@+id/wizard_finish_btn”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“Finish” />
</LinearLayout>
</LinearLayout>