亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中FrameLayout的示例分析

發布時間:2022-03-31 09:01:00 來源:億速云 閱讀:210 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關Android中FrameLayout的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

概述

       FrameLayout以層疊的方式布局組件:每次只能顯示其中的一個。與撲克牌類似,當疊加在一起時只能看到最上面的那張。FrameLayout為布局在其中的組件提供了一個XML配置屬性:Android:layout_gravity。通過這個屬性,布局在FrameLayout中的組件可以指定自己在容器中的重心位置,例如,靠左,靠右等, 所有控件都默認顯示在屏幕左上角。

FrameLayout全局定義的屬性

Android中FrameLayout的示例分析

練習一

實現下面布局

Android中FrameLayout的示例分析

代碼:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:foreground="@mipmap/ic_launcher"
    android:foregroundGravity="left">
 
    <Button
        android:layout_width="340dp"
        android:layout_height="570dp"
        android:text="按鈕1"
        android:background="#A0230E"
        />
 
    <Button
        android:layout_width="250dp"
        android:layout_height="220dp"
        android:text="按鈕2"
        android:background="#0A6188"
        />
 
</FrameLayout>

練習二

實現鼠標點擊圖片,然后圖片切換的效果(4張圖片自己選擇)

Android中FrameLayout的示例分析

代碼:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <ImageView
        android:id="@+id/p1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p1"
        android:scaleType="fitCenter"
        android:visibility="gone"
        />
    <ImageView
        android:id="@+id/p2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p2"
        android:scaleType="fitCenter"
        android:visibility="gone"
        />
    <ImageView
        android:id="@+id/p3"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p3"
        android:scaleType="fitCenter"
        android:visibility="gone"
        />
    <ImageView
        android:id="@+id/p4"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/p4"
        android:scaleType="fitCenter"
        android:visibility="visible"
        />
 
 
</FrameLayout>

MainActivity.java

package com.example.myapplication;
 
import androidx.appcompat.app.AppCompatActivity;
 
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toolbar;
 
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
    private ImageView p1,p2,p3,p4;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        p1=(ImageView)this.findViewById(R.id.p1);
        p1.setOnClickListener(this);
        p2=(ImageView)this.findViewById(R.id.p2);
        p2.setOnClickListener(this);
        p3=(ImageView)this.findViewById(R.id.p3);
        p3.setOnClickListener(this);
        p4=(ImageView)this.findViewById(R.id.p4);
        p4.setOnClickListener(this);
 
    }
 
    @Override
    public void onClick(View view) {
        int id= view.getId();
        switch (id){
            case R.id.p1:
                p1.setVisibility(View.GONE);
                p2.setVisibility(View.VISIBLE);
                break;
            case R.id.p2:
                p2.setVisibility(View.GONE);
                p3.setVisibility(View.VISIBLE);
                break;
            case R.id.p3:
                p3.setVisibility(View.GONE);
                p4.setVisibility(View.VISIBLE);
                break;
            case R.id.p4:
                p4.setVisibility(View.GONE);
                p1.setVisibility(View.VISIBLE);
                break;
        }
    }
}

關于“Android中FrameLayout的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武安市| 泰和县| 长沙市| 肇庆市| 即墨市| 广元市| 出国| 中牟县| 丹巴县| 五大连池市| 锡林郭勒盟| 晋宁县| 通江县| 噶尔县| 伊吾县| 专栏| 博乐市| 萨迦县| 溆浦县| 泰州市| 车险| 同德县| 灵宝市| 临夏县| 汝城县| 东乌珠穆沁旗| 云南省| 加查县| 南阳市| 康平县| 墨脱县| 德昌县| 福鼎市| 丹东市| 迁安市| 石首市| 浑源县| 卓资县| 长泰县| 醴陵市| 石台县|