Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> android的布局-----FrameLayout(幀布局),幀布局framelayout

android的布局-----FrameLayout(幀布局),幀布局framelayout

編輯:關於android開發

android的布局-----FrameLayout(幀布局),幀布局framelayout


(-)幀布局簡介

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

(二)屬性

foreground:這是幀布局的前景圖像

foregroundGravity:定義繪制前景圖片的gravity屬性

(三)使用

<?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">
   <FrameLayoutandroid: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>

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