एंड्रॉइड (जावा) में टेक्स्ट व्यू के गोल कोनों को कैसे करें? [डुप्लिकेट]

Aug 17 2020

मेरी मुख्य गतिविधि में मेरा निम्नलिखित कोड है:

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

मैं टेक्स्ट व्यू के कोनों को गोल कैसे कर सकता हूं?

जवाब

TalMantelmakher Aug 17 2020 at 22:40

Res \ drawable फ़ोल्डर में एक XML फ़ाइल बनाएँ - rounded_corners.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);