您好,登錄后才能下訂單哦!
一個垂直方向的LinearLayout,包含兩個View。下面一個View(工具欄)固定在屏幕底部,上面的View占據剩余的屏幕空間。
<LinearLayout
android:orientation="vertical"
android:id="@+id/vertical_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
<FrameLayout android:id="@+id/fixed_bottombar_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
android:layout_height="0dp" <!-- 這里不能設置fill_parent -->
android:layout_weight="1" <!-- 這里設置layout_weight=1是最關鍵的,否則底部的LinearLayout無法到底部 -->
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。