英文:
Shadow on android button or textview
问题
我怎样在Android Studio上给按钮或TextView添加阴影,以使我的按钮和文字看起来酷炫?
注意:我是Android开发的初学者,所以不想做我不理解的事情。
英文:
How can i add shadow on a button or textview on android studio to make cool my buttons and text's ??
NOTE: I'm beginner on android development so i don't want to make something that I do not understand
答案1
得分: 1
使用这个示例:
<TextView android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="#ff00ff"
android:shadowColor="eeeeee"
android:shadowDx="1"
android:shadowDy="1"
android:shadowRadius="2" />
英文:
use this sample:
<TextView android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="#ff00ff"
android:shadowColor="eeeeee"
android:shadowDx="1"
android:shadowDy="1"
android:shadowRadius="2" />
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论