有谁知道如何在Android上使用弯曲的编辑文本创建登录表单?
例如IOS:
有没有好的UI教程?
答案 0 :(得分:2)
创建一个9-patch drawable并将其定义为每个textview的背景。
但请记住,从不同平台复制UI元素不仅是任何平台的一般不良做法,而且不建议使用官方Android设计指南。
http://developer.android.com/design/patterns/pure-android.html
答案 1 :(得分:2)
只需创建一个可绘制资源,指定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>
然后,只需在你的布局中引用这个drawable:
<?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>
答案 2 :(得分:0)
我与他们无关,但它是一个非常棒的UI框架:http://kivy.org
它适用于Android [1](和许多其他人)并且是OpenSource(你会在Github上找到它)