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=".Second">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World"
android:layout_gravity="center"
android:textSize="50dp"/>
</LinearLayout>
</FrameLayout>
728x90
반응형
'# Android' 카테고리의 다른 글
[Android] 일정 시간 뒤 실행 - postDelayed(); (0) | 2022.02.18 |
---|---|
[Android] 타이틀 바, 상태 바 제거(핵심만) (0) | 2022.02.18 |
[Android] 화면 전환 애니메이션 - Activity (0) | 2022.02.18 |
[Android] 입력 값 받아오기 - EditText (0) | 2022.02.18 |
[Android] Intent - 액티비티 전환, 데이터 넘기기 (0) | 2022.02.18 |