TextView是Android应用程序的基本对象。它位于android一些基本对象的列表中,用于在屏幕上打印文本。为了创建更好的应用程序,我们应该学习如何创建具有圆角背景的TextView。我们可以针对任何android应用程序以实用的方式实施这项技能。为了创建具有专业外观的用户界面,我们需要注意这些小事情。
在本文中,您将学习如何创建带有圆角的TextView。首先,我们需要创建一个可绘制的资源文件,该文件具有正确的定义以使TextView的角变圆,然后我们必须向该特殊的TextView对象添加一个background属性。让我们逐步进行吧!
分步实施
第1步:创建一个新的android studio项目,然后选择一个空的活动。您也可以参考GFG教程来创建新的android studio项目。
步骤2:确保已在屏幕的左上角为项目结构选择了Android选项,然后转到res / drawable文件夹。
步骤3:在此处右键单击drawable文件夹,然后单击new并选择drawable资源文件。给它一个您选择的名称,我们给它rounded_corner_view 。
Note: In android studio you can’t give a name of a resource file (Layout file, Color File, Image File, or any XML file) in uppercase and camelCase, you have to follow the lowercase letters only and it’s a good habit to use lowercase letters with underscores in place of spaces.
步骤4:现在,在刚刚创建的drawable资源文件中,删除所有默认代码并粘贴以下代码。
XML
步骤5:现在转到activity_main.xml文件,并向该TextView添加一个属性,要为其添加圆角。该属性是android:background =” @ drawable / rounded_corner_view” 。
Tip: Don’t forget to replace your drawable resource file name if you have given a different name and you don’t need to add xml extension after file name.