Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

TextView 3줄까지만 출력하고, 마지막에 '...' 처리하기 본문

안드로이드/Error Report

TextView 3줄까지만 출력하고, 마지막에 '...' 처리하기

설.현.아빠 2011. 9. 30. 10:18



별 버그가 다있네...ㅋ




EllipsizingTextView index_summary = (EllipsizingTextView)convertView.findViewById(R.id.index_summary);

index_summary.setText(item.getString("summary"));

index_summary.setMaxLines(3);


<com.fobikr.SuperStarK.View.EllipsizingTextView

android:id="@+id/index_summary"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:textSize="20px"

android:textColor="#747474"

android:layout_marginTop="40px" />



아래 파일을 추가하고, 위처럼 사용하면 된다.




Comments