是否可以在运行时每个代码创建一个舍入的Textview?我知道XML中的布局定义是可能的,但我喜欢按代码进行。
TextView tvnew = new TextView(mContext);
tvnew.setcorner=5px; ?????????
问候
答案 0 :(得分:1)
在drawable文件夹中创建一个xml文件,作为roundback.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<stroke android:width="1dp" android:color="#FF404040" />
<corners android:radius="6dp" />
<gradient android:startColor="#FF6800" android:centerColor="#FF8000" android:endColor="#FF9700" android:angle="90" />
</shape>
然后在您的代码中,执行
tvnew.setBackgroundResource(R.drawable.roundedback);