ํ ์ด๋ธ ๋ ์ด์์
๊ฒฉ์ ๋ชจ์์ผ๋ก ๋ทฐ๋ฅผ ๋ฐฐ์นํ ๋ ์ฌ์ฉ
**๋ฆฌ๋์ด ๋ ์ด์์ ์์ ๋ฆฌ๋์ด ๋ ์ด์์์ ๋ฃ๋ ๋ฐฉ์์ ์ฌ์ฉํด๋ ๋์ง๋ง ํ ์ด๋ธ ๋ ์ด์์์ ์ฌ์ฉํ๋ฉด ์ข ๋ ๊ฐ๋จํ ์ด์ ?
=> ํ ์ด๋ธ๋ ์ด์์์ด ์ข๋ ํ ์ด๋ธ์ ๊ด๋ จ๋ ์์ฑ๋ค์ด ์กด์ฌํ๋ฏ๋ก ๋์ฑ ํธ๋ฆฌ, ๋น์ทํ๋ ํ ํํ์ ๊ณ ์ ๋ ๋ชจ์์ด๋ผ๋ฉด ํ ์ด๋ธ ๋ ์ด์์์ด ๋ ์ฐ๊ธฐ ๊ฐํธํ๊ณ , ๊ฐ ํ์ด๋ ์ด์ด ์ ๋์ ์ธ ๊ฒฝ์ฐ๋ ๋ฆฌ๋์ด ๋ ์ด์์์ด ๋ ์ ํฉํ๋ค.
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button2" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button3" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button4" />
</TableRow>
</TableLayout>
์คํฌ๋กค ๋ทฐ(scrollview)
์์ง(์์๋)๋ก ์คํฌ๋กคํ๋ ๊ธฐ๋ฅ
๊ธ์ ์๊ฐ ํ๋ฉด์ ์ด๊ณผํ์ฌ ์คํฌ๋กค ํ ์ ์๊ฒ ํด์ฃผ๋ ์ปจํ ์ด๋
์ฃผ์) ์คํฌ๋กค ๋ทฐ์๋ ๋จ ํ๋์ ์์ ฏ๋ง ๋ฃ์ ์ ์๋ค
- ์ํ ๋ฐฉํฅ์ ์คํฌ๋กค๋ทฐ๋ฅผ ์ฌ์ฉํ๊ณ ์ ํ ๋๋ HorizontalScrollView์ฌ์ฉ
์คํฌ๋กค๋ทฐ ๋ง๋ค๊ธฐ
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="200dp"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button1"/>
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button2"/>
<Button
android:id="@+id/btn3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button3"/>
<Button
android:id="@+id/btn14"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button4"/>
<Button
android:id="@+id/btn15"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button5"/>
</LinearLayout>
</ScrollView>
'APP > ANDROID' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ถ์คํธ์ฝ์ค]์๋๋ก์ด๋ ํ๋๊ทธ๋จผํธ(fragment),์ก์ ๋ฐ (0) | 2020.02.27 |
---|---|
[๋ถ์คํธ์ฝ์ค] ๋ธ๋ก๋์บ์คํธ ์์ ์/์ํ ๊ถํ (0) | 2020.02.21 |
[๋ถ์คํธ์ฝ์ค] ์ธํ ํธ(intent)๋ฅผ ์ด์ฉํ ํ๋ฉด์ ํ (0) | 2020.02.18 |
[๋ถ์คํธ์ฝ์ค]๋ ์ด์์ ๋ง๋ค๊ธฐ (0) | 2020.02.05 |
[๋ถ์คํธ์ฝ์ค] ๋ ์ด์์#๋ทฐ์ ์์ฑ (0) | 2020.01.18 |