woong's
Android TextView 좌우 반전 하기 본문
Android TextView 좌우 반전 하기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import android.content.Context; import android.graphics.Canvas; import android.util.AttributeSet; import android.widget.TextView; public class MirroredTextView extends TextView { public MirroredTextView(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onDraw(Canvas canvas) { canvas.translate(getWidth(), 0); canvas.scale(-1, 1); super.onDraw(canvas); } } |
사용방법
1 2 3 4 5 6 7 8 9 10 | <com.iris.util.MirroredTextView android:id="@+id/textContent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:layout_margin="20dp" android:textColor="@color/text_black" /> |
'Develop > Android' 카테고리의 다른 글
android string.xml 특수 문자 사용하기 (0) | 2016.02.14 |
---|---|
android viewpager gallery 사용하기 (0) | 2016.02.14 |
Android Google Chart Option 사용하기 (0) | 2016.02.14 |
Android 화면 ScreenShot 사용하기 (0) | 2016.02.14 |
Android HalfCircle 사용하기 (0) | 2016.02.14 |
Comments