Android (Java)에서 TextView의 모서리를 둥글게 만드는 방법은 무엇입니까? [복제]

Aug 17 2020

내 Main-Activity에 다음 코드가 있습니다.

LinearesLayout = (LinearLayout) findViewById(R.id.linearlayout);
TextView textView = new TextView(this);
textView.setBackgroundResource(R.color.colorPrimary);
LinearesLayout.addView(textView);

TextView의 모서리를 둥글게 설정하려면 어떻게해야합니까?

답변

TalMantelmakher Aug 17 2020 at 22:40

res \ drawable 폴더에 다음 rounded_corners.xml과 같이 XML 파일을 만듭니다 .

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="#ff0000"/>
  <corners android:radius="4dp" />
  <padding
    android:top="5dp"
    android:left="5dp"
    android:bottom="5dp"
    android:right="5dp" />
</shape> 

다음 줄을 바꿉니다.

textView.setBackgroundResource(R.color.colorPrimary);

이에:

textView.setBackgroundResource(R.drawable.rounded_corners);