일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html charset
- #1차원배열
- html code
- #성적관리프로그램
- html object
- html video
- #android activity
- git flow
- relative path
- #CallByAddress
- #JAVASCRIPT
- 토큰경제
- docker example
- #C++ 연산자함수오버로딩
- #자바상속#자바이즈어#is~a
- html id
- #bubbleSort
- #2차원배열
- #binary
- #다차원포인터
- mac terminal command
- html multimedia
- #3차원배열
- html plug-in
- border-box
- hyperledger transaction
- html5 new tag
- html youtube
- 하이퍼레저패브릭
- #C++ has~a
Archives
- Today
- Total
A sentimental robot
RelativeLayout 본문
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="com.example.i310_54.myapplication08.MainActivity"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:layout_width="150dp"
android:layout_height="200dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="parent" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 1"
android:layout_above="@id/button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 2"
android:layout_alignTop="@+id/button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 3"
android:layout_centerVertical="true"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 4"
android:layout_alignBottom="@id/button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 5"
android:layout_below="@id/button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 6"
android:layout_toLeftOf="@id/button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 7"
android:layout_alignLeft="@id/button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 8"
android:layout_centerHorizontal="true"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 9"
android:layout_alignRight="@id/button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="child 10"
android:layout_toRightOf="@id/button1"/>
<!--원하는 위치 속성을 2개 써주기-->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="exercise"
android:layout_toRightOf="@id/button1"
android:layout_alignBottom="@id/button1"/>
</RelativeLayout>
</LinearLayout>
'Android Studio' 카테고리의 다른 글
Customizing (0) | 2018.02.06 |
---|---|
OnTouch (0) | 2018.02.06 |
Handler (0) | 2018.02.05 |
GridLayout2 (0) | 2018.02.05 |
GridLayout (0) | 2018.02.05 |