728x90
Linear Layout
- ๋ด์ฉ๋ฌผ๋ค์ ์ํ ๋๋ ์์ง์ผ๋ก ๋ฐฐ์นํ๋ค.
- ๊ธฐ๋ณธ์ ์ผ๋ก ์ํ ๋ฐฐ์น๋ค.
- ์์ง์ผ๋ก ๋ฐฐ์นํ๊ณ ์ถ๋ค๋ฉด android:orientation:"vertical"์ ์จ์ฃผ๋ฉด ๋๋ค.
- ๋ง์ฝ ์ํ์ผ๋ก ๋ฐฐ์นํ๋ค๊ณ ๋ฐ๋ก ์ ๊ณ ์ถ๋ค๋ฉด android:orientation:"horizontal"์ ์จ์ฃผ๋ฉด ๋๋ค.
- ๋ ์ด์ด์ ํฌ๊ธฐ๋ฅผ ๊ฐ๋ฐ์๊ฐ ๋ฐ๋ก ์ค์ ํด ์ค ์ ์๋ค.
- ์๋์ค์ ์ธ wrap_content์ match_parent๋ก ์ค์ ํ ์๋ ์๋ค.
- wrap_content : ๋ด์ฉ๋ฌผ์ ํฌ๊ธฐ์ ๋ง์ถ๋ค.
- match_parent : ํ๋ฉด์ ์ต๋ํฌ๊ธฐ๋ก ๊ฝ์ฑ์ด๋ค.
<LinearLayout
android:orientation="vertical" // ๋ด์ฉ๋ฌผ ์์ง ์ ๋ ฌ
android:layout_width="match_parent"
android:layout_height="match_parent"/>
์ฌ์ง ์ฝ์
- drawble ํ์ผ์์ ์ํ๋ ์ด๋ฏธ์ง๋ฅผ ๋ฏธ๋ฆฌ ๋ฃ์ด๋๋ค.
- xmlํ์ผ๋ก ๊ฐ์ ImageView ์์๋ฅผ ์ ์ด์ค๋ค.
- ์ด๋ฏธ์ง์ ๋๋น์ ๋์ด๊ฐ ์๋์ผ๋ก ์์ฑ๋๋๋ฐ, ๊ฐ๋ฐ์๊ฐ ๋ฐ๋ก ์ค์ ํด ์ค ์ ์๋ค.
- ์๋ ์ค์ ์ธ wrap_content ์ match_parent๋ก ์ค์ ํด ์ค์๋ ์๋ค.
- ํ๊ทธ ์์ android:src=""๋ฅผ ์ ๊ณ , ํฐ ๋ฐ์ดํ ์์ ์ฌ์ง์ ์ฃผ์๋ฅผ ์ ์ด์ค๋ค.
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:src="@drawable/hyein_1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
728x90
'์๋๋ก์ด๋๐ค' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[์๋๋ก์ด๋] ํ๋ฉด ์ด๋ํ๊ธฐ (0) | 2024.07.11 |
---|---|
[์๋๋ก์ด๋] ํด๋ฆญ์ ๋ฐ์ํ๊ธฐ & ํ ์คํธ ๋ฉ์ธ์ง ๋์ฐ๊ธฐ (1) | 2024.07.11 |
[์ฝํ๋ฆฐ] ์ฝ๋ฃจํด (0) | 2024.07.09 |
[์ฝํ๋ฆฐ] ๋นํธ์ฐ์ฐ (0) | 2024.07.09 |
[์ฝํ๋ฆฐ] ์์, ๋ฆ์ ์ด๊ธฐํ, ์ด๊ธฐํ ์ง์ฐ (0) | 2024.07.08 |