Comment arrondir les coins de TextView sous Android (Java)? [dupliquer]
J'ai le code suivant dans mon activité principale:
LinearesLayout = (LinearLayout) findViewById(R.id.linearlayout);
TextView textView = new TextView(this);
textView.setBackgroundResource(R.color.colorPrimary);
LinearesLayout.addView(textView);
Comment puis-je arrondir les coins de TextView?
Réponses
TalMantelmakher
Créez un fichier XML dans le dossier res \ drawable - rounded_corners.xml
comme ceci:
<?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>
Remplacez cette ligne:
textView.setBackgroundResource(R.color.colorPrimary);
pour ça:
textView.setBackgroundResource(R.drawable.rounded_corners);