[Android] Canvas TextView DP, Pixel 설정
[Android] Canvas TextView DP, Pixel 설정 TextView 의 TextSize를 xml에서 설정하지 않고 Canvas를 이용하는 Code상에서 동적으로 설정해주고 싶을 때 DP값과 Pixel 값을 변환 시켜주는 방법이다. Paint paint = new Paint(); paint.setTextSize(14); canvas.drawText("Hello World!", 200, 500, paint); TextView textView = (TextView)findViewById(R.id.textView); textView.setTextSize(14); textView.setText("Hello World"); 아래와 같이 Pixel 을 DP 값으로, DP를 Pixel 값으로 변경하는..
Computer/Android
2020. 10. 19. 21:54