Android布局之FrameLayout幀布局_Android

來源:互聯網
上載者:User

前言

作為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幀布局,希望大家喜歡。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.