有谁知道如何在 Android 上创建带有弯曲编辑文本的登录表单?
比如像IOS:
有什么好的 UI 教程吗?
创建一个 9-patch 可绘制对象并将其定义为每个文本视图的背景。
但请记住,从不同平台复制 UI 元素不仅在任何平台上都是一种普遍的不良做法,而且不推荐,而是官方的 Android 设计指南。
http://developer.android.com/design/patterns/pure-android.html
只需创建一个可绘制资源,指定 EditText 的绘制方式:
<?xml version="1.0" encoding="utf-8"?>
<!-- res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<solid android:color="#FFFFFF"/>
<corners
android:bottomRightRadius="15dp"
android:bottomLeftRadius="15dp"
android:topLeftRadius="15dp"
android:topRightRadius="15dp"/>
</shape>
然后,只需在您的布局中引用此可绘制对象:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dip"
android:background="@drawable/rounded_edittext" />
</LinearLayout>
我不隶属于他们,但它是一个非常棒的 UI 框架: http: //kivy.org
它适用于 Android [1](和许多其他)并且是开源的(您可以在 Github 上找到它)