728x90
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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=".RelativeActivity">
<!-- RelativeActivity 은 방향성을 가지고 있지는 않으나
자식객체의 위치선정에 대해서 상대적으로 자리를 잡아주는 것이 가능한 레이아웃-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="URL"
android:textSize="40dp"
android:id="@+id/tv"/>
<!-- id는 중복해서 만들 수 없다. -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="www.naver.com"
android:textSize="30dp"
android:layout_toRightOf="@+id/tv"
android:id="@+id/tv2"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ok"
android:layout_below="@id/tv2"
android:layout_alignRight="@id/tv2"/>
<TextView
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#aaf"
android:layout_centerInParent="true"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bottom"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"/>
</RelativeLayout>
실행결과
'일단 해보는 코딩 > Android' 카테고리의 다른 글
[Android] 이벤트 효과 (클릭, 메뉴바) (0) | 2022.10.05 |
---|---|
[Android] Weight 속성 및 이벤트 처리 (0) | 2022.10.04 |
[Android] FrameLayout (0) | 2022.09.29 |
[Android] Linear layout (1) | 2022.09.29 |
[Android] 안드로이드 작업 환경 설정 (다운로드 방법) (0) | 2022.09.28 |