如何在android中创建一个方形文本框

时间:2017-07-19 07:20:46

标签: java android textview

我必须创建一个activity,其中应包含一个方形文本框,用户可以在其中编写注释并通过单击按钮进行保存。

示例活动附于此处:

enter image description here

我已经做了足够的研究,我发现创建自定义TextView的最多,因为我可以在一行中提供输入文本,但我需要创建,就像我可以去下一行提供输入。

任何人都可以帮我解决如何执行此任务的问题吗?

1 个答案:

答案 0 :(得分:2)

试试这个

 <EditText
  android:background="@drawable/custom_button"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:hint="text6 demo" />

在您的drawble文件夹中创建这样的背景

 <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <stroke android:width="2dp" android:color="@color/colorPrimary" />

        </shape>
    </item>
</selector>