Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android布局之FrameLayout幀布局

Android布局之FrameLayout幀布局

編輯:關於Android編程

前言

作為android六大布局中最為簡單的布局之一,該布局直接在屏幕上開辟出了一塊空白區域,

當我們往裡面添加組件的時候,所有的組件都會放置於這塊區域的左上角;

幀布局的大小由子控件中最大的子控件決定,如果都組件都一樣大的話,同一時刻就只能能看到最上面的那個組件了!

當然我們也可以為組件添加layout_gravity屬性,從而制定組件的對其方式

幀布局在游戲開發方面用的比較多,等下後面會給大家演示一下比較有意思的兩個實例

(-)幀布局簡介

幀布局容器為每個加入的其中的組件創建一個空白的區域稱為一幀每個子組件占據一幀,這些幀都會根據gravity的屬性執行自動對齊

(二)常用屬性:

android:foreground:設置該幀布局容器的前景圖像

android:foregroundGravity:設置前景圖像顯示的位置

(三)使用

<?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">
 <FrameLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  >
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:width="300dp"
   android:height="300dp"
   android:background="#f00"/>
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:width="200dp"
   android:height="200dp"
   android:background="#0f0"/>
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:width="100dp"
   android:height="100dp"
   android:background="#00f"/>
 </FrameLayout>
</LinearLayout>

以上內容給大家介紹了Android布局之FrameLayout幀布局,希望大家喜歡。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved