๋ฐ์ํ
Notice
Recent Posts
Recent Comments
Link
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
Tags
- Pandas
- Streamlit๊ธฐ์ด
- RESTful API
- ์น๋์๋ณด๋ ๊ธฐ์ด
- db
- Android
- ์๋ฐ์คํฌ๋ฆฝํธ ๊ณต๋ถ
- ์๋ฐ์ด๋ณด
- ์๋ฐํ๋ก๊ทธ๋๋ฐ
- ๋ฐ์ดํฐ๋ฒ ์ด์ค
- ์๋ฐ์คํฌ๋ฆฝํธ
- MySQL
- ํ์ด์ฌ๊ณต๋ถ
- ์๋ฐ๊ธฐ์ด
- java
- Streamlit๊ธฐ๋ณธ
- ์๋๋ก์ด๋ ์ฑ ๊ฐ๋ฐ
- ์๋ฐ๊ณต๋ถ
- serverless
- Matplotlib ๊ธฐ์ด
- ์น๋์๋ณด๋ ์ ์
- JavaScript
- ํ์ด์ฌ
- ์๋ฐ
- ์คํธ๋ฆผ๋ฆฟ ๊ธฐ๋ณธ
- ์คํธ๋ฆผ๋ฆฟ
- ํ๋ค์ค๊ณต๋ถ
- ์๋๋ก์ด๋ ์คํ๋์ค
- streamlit
- ํ๋ค์ค
Archives
- Today
- Total
ruriruriya
[Android] ์๋๋ก์ด๋ - TextView ์์ฑ๋ค(text, textColor, background, layout_margin, visibility, padding, gravity) ๋ณธ๋ฌธ
๐คAndroid/Java
[Android] ์๋๋ก์ด๋ - TextView ์์ฑ๋ค(text, textColor, background, layout_margin, visibility, padding, gravity)
๋ฃจ๋ฆฌ์ผใ 2023. 12. 21. 13:09๋ฐ์ํ
์๋๋ก์ด๋์ TextView๋ ํ๋ฉด์ ํ ์คํธ๋ฅผ ํ์ํ๋ ๋ฐ ์ฌ์ฉ๋๋ UI ์์์ด๋ค. ์ฌ๋ฌ ๊ฐ์ง ์์ฑ์ ์ฌ์ฉํ์ฌ ํ ์คํธ, ์์, ๋ฐฐ๊ฒฝ, ๋ ์ด์์ ๋ฑ์ ์ค์ ํ ์ ์๋ค.
์๋๋ก์ด๋ TextView ์์ฑ
- text: TextView์ ํ์๋๋ ํ ์คํธ ๋ด์ฉ์ ์ค์ ํ๋ค.
- textColor: ํ ์คํธ์ ์์์ ์ง์ ํ๋ค.
- background: TextView์ ๋ฐฐ๊ฒฝ์ ์ค์ ํ๋ค. ๋ฐฐ๊ฒฝ์ผ๋ก๋ ์์, ์ด๋ฏธ์ง ๋๋ Drawable ๋ฑ์ ์ฌ์ฉํ ์ ์๋ค.
- layout_margin: TextView์ ์ฌ๋ฐฑ์ ์ค์ ํ๋ค. layout_margin์ ํตํด ์ํ์ข์ฐ ์ฌ๋ฐฑ์ ์ค์ ํ ์ ์๋ค.
- visibility: TextView์ ํ์ ์ฌ๋ถ๋ฅผ ๊ฒฐ์ ํ๋ค. visible, invisible, gone ๋ฑ์ ๊ฐ์ผ๋ก ์ค์ ํ ์ ์๋ค.
- padding: TextView ๋ด๋ถ์ ํ ์คํธ์ ํ ๋๋ฆฌ(๊ฒฝ๊ณ) ์ฌ์ด์ ์ฌ๋ฐฑ์ ์ง์ ๋ค.
- gravity: TextView ๋ด์ ํ ์คํธ๋ฅผ ์ด๋์ ์ ๋ ฌํ ์ง๋ฅผ ์ค์ ํ๋ค. ์๋ฅผ ๋ค์ด, center, start, end ๋ฑ์ผ๋ก ์ค์ ํ ์ ์๋ค.
<androidx.constraintlayout.widget.ConstraintLayout 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=".MainActivity">
<TextView
android:text="์๋
ํ์ธ์."
android:textColor="#B85252"
android:background="#00ff00"
android:layout_margin="20dp"
android:visibility="invisible"
android:padding="20dp"
android:gravity="center"
</androidx.constraintlayout.widget.ConstraintLayout>
[์๋๋ก์ด๋ ์คํ๋์ค ๋์์ธ ํ๋ฉด]
๋ฐ์ํ