일단 해보는 코딩/Android

[Android] FrameLayout

eun_zoey2 2022. 9. 29. 11:16
728x90

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".FrameActivity">

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#000"
        android:text="123"
        android:textColor="#fff"/>

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#0f0"
        android:text="123"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="30dp"
        android:padding="20dp"
        android:paddingTop="20dp"/>

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#00f"
        android:layout_gravity="right"/>
    <!-- layout_gravity : 해당 객체의 위치를 통째로 변경하는 것-->

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#f00"
        android:layout_gravity="bottom"/>

    <TextView
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:background="#aaf"
        android:layout_gravity="center"
        android:gravity="center"
        android:text="hello"
        android:textSize="30dp" />
    <!-- gravity : 객체 내부의 내용문의 위치를 변경-->




</FrameLayout>

 

AndroidMainfest.xml 들어가면 내가 만든 Activity 2개를 확인할 수 있다.

 

하단의 코드는 어플을 실행 시 먼저 실행한다는 내용이다. 해서 방금 만든 Activity 실행 순서를 변경해준다.

<intent-filter>
    <action android:name="android.intent.action.MAIN" />

    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

 

위치 변경 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Ex_0929"
        tools:targetApi="31">
        <activity
            android:name=".FrameActivity"
            android:exported="true">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
        <activity
            android:name=".LinearActivity"
            android:exported="true">
            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
    </application>

</manifest>

 

 

 

실행결과