๊ด€๋ฆฌ ๋ฉ”๋‰ด

ruriruriya

[Android]์•ˆ๋“œ๋กœ์ด๋“œ - TextView์˜ ํ…์ŠคํŠธ ๊ธธ์ด๋ฅผ ์„ค์ •ํ•˜๋Š” ๋ฐฉ๋ฒ•(maxLines, ellipsize) ๋ณธ๋ฌธ

๐Ÿค–Android

[Android]์•ˆ๋“œ๋กœ์ด๋“œ - TextView์˜ ํ…์ŠคํŠธ ๊ธธ์ด๋ฅผ ์„ค์ •ํ•˜๋Š” ๋ฐฉ๋ฒ•(maxLines, ellipsize)

๋ฃจ๋ฆฌ์•ผใ…‘ 2024. 2. 11. 09:45
๋ฐ˜์‘ํ˜•

์•ˆ๋“œ๋กœ์ด๋“œ์—์„œ TextView์˜ ๊ธธ์ด๋ฅผ ์„ค์ •ํ•˜๋Š” ๋ฐฉ๋ฒ•์€ ํฌ๊ธฐ์™€ ๊ด€๋ จ๋œ ์—ฌ๋Ÿฌ ๊ฐ€์ง€ ์†์„ฑ์„ ์‚ฌ์šฉํ•˜์—ฌ ์กฐ์ ˆํ•  ์ˆ˜ ์žˆ๋‹ค.
์ฃผ๋กœ ์‚ฌ์šฉ๋˜๋Š” ์†์„ฑ์œผ๋กœ๋Š”
layout_width, layout_height, maxLines, ellipsize ๋“ฑ์ด ์žˆ๋‹ค.
๊ฐ ์†์„ฑ์˜ ์—ญํ• ๊ณผ ์˜ˆ์‹œ ์ฝ”๋“œ๋ฅผ ์•Œ์•„๋ณด์ž.

 

1. layout_width ์™€ layout_height

TextView์˜ ๋„ˆ๋น„์™€ ๋†’์ด๋ฅผ ๊ฒฐ์ •ํ•œ๋‹ค. ๋‹ค์Œ๊ณผ ๊ฐ™์€ ๊ฐ’๋“ค์„ ๊ฐ€์งˆ ์ˆ˜ ์žˆ๋‹ค.

  • wrap_content: TextView๊ฐ€ ํฌํ•จํ•˜๋Š” ๋‚ด์šฉ์— ๋งž๊ฒŒ ํฌ๊ธฐ๊ฐ€ ์กฐ์ ˆ๋จ.
  • match_parent ๋˜๋Š” fill_parent: ๋ถ€๋ชจ ๋ ˆ์ด์•„์›ƒ์˜ ๋„ˆ๋น„ ๋˜๋Š” ๋†’์ด์™€ ๊ฐ™์•„์ง.
  • ๊ณ ์ • ํฌ๊ธฐ(์˜ˆ: 100dp): ๊ณ ์ •๋œ ํฌ๊ธฐ๋กœ ์„ค์ •.
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello, World!" />

 

2. maxLines

TextView์— ํ‘œ์‹œํ•  ์ตœ๋Œ€ ์ค„ ์ˆ˜๋ฅผ ์ง€์ •ํ•œ๋‹ค.
์ด ์†์„ฑ์€ TextView๊ฐ€ ๋„ˆ๋ฌด ๊ธธ์–ด์งˆ ๋•Œ ํ…์ŠคํŠธ๋ฅผ ์ž๋ฅผ ์ˆ˜ ์žˆ๋‹ค.

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:maxLines="2"
    android:text="This is a long text that will be truncated after two lines." />

 

3. ellipsize

TextView๊ฐ€ ์ตœ๋Œ€ ์ค„ ์ˆ˜์— ๋„๋‹ฌํ•  ๋•Œ ํ…์ŠคํŠธ๋ฅผ ์ž๋ฅผ ๋•Œ ์‚ฌ์šฉ๋˜๋Š” ํ‘œ์‹œ ๋ฐฉ๋ฒ•์„ ์ง€์ •ํ•œ๋‹ค.
์ž๋ฅด๋Š” ๋ถ€๋ถ„์— ๋Œ€ํ•œ ํ‘œ์‹œ๋ฅผ ์„ค์ •ํ•  ์ˆ˜ ์žˆ๋‹ค.

  • end: ๋ ๋ถ€๋ถ„์— "..."๋ฅผ ํ‘œ์‹œ
  • start: ์‹œ์ž‘ ๋ถ€๋ถ„์— "..."๋ฅผ ํ‘œ์‹œ
  • middle: ์ค‘๊ฐ„ ๋ถ€๋ถ„์— "..."๋ฅผ ํ‘œ์‹œ
  • marquee: ํ…์ŠคํŠธ๊ฐ€ ๋„ˆ๋ฌด ๊ธธ ๊ฒฝ์šฐ ํ˜๋Ÿฌ๊ฐ€๋Š” ํšจ๊ณผ๋ฅผ ์ค€๋‹ค.
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:maxLines="1"
    android:ellipsize="end"
    android:text="This is a long text that will be truncated at the end." />

 

์œ„์˜ ์˜ˆ์‹œ ์ฝ”๋“œ์—์„œ๋Š” ๊ฐ ์†์„ฑ์„ ์‚ฌ์šฉํ•˜์—ฌ TextView์˜ ๊ธธ์ด๋ฅผ ์„ค์ •ํ•˜๋Š” ๋ฐฉ๋ฒ•์„ ๋ณด์—ฌ์ค€๋‹ค.
ํ•„์š”์— ๋”ฐ๋ผ ์ด๋Ÿฌํ•œ ์†์„ฑ์„ ์กฐํ•ฉํ•˜์—ฌ ํ…์ŠคํŠธ ๋ทฐ์˜ ๋ชจ์–‘์„ ์›ํ•˜๋Š”๋Œ€๋กœ ์กฐ์ ˆํ•  ์ˆ˜ ์žˆ๋‹ค.

๋ฐ˜์‘ํ˜•