Defining Drawable Shape with in JAVA code

杀马特。学长 韩版系。学妹 提交于 2019-11-28 06:16:34

问题


Hi Can I define this shape without using xml code

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#34342C" android:endColor="#848486"
    android:angle="90" />
<padding android:left="7dp" android:top="5dp" android:right="7dp"
    android:bottom="5dp" />
<stroke android:width="1dp" android:color="#FFFFFF" />
</shape>

Thanks for your help


回答1:


Yes

  • use a ShapeDrawable to draw your rectangle with the padding you require
  • using a Paint with the appropriate color and stroke width
  • using a Linear gradient and adding this to the Paint as a shader


来源:https://stackoverflow.com/questions/6205354/defining-drawable-shape-with-in-java-code

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!