刚刚在我的Nexus 7上安装了“L”,并使用相当简单的用户界面安装了我的应用程序。
以下是Android L上的内容
这是布局xml文件的相关部分。
<EditText android:id="@+id/remote_control_password" android:hint="Enter a password"
android:text="" android:inputType="textVisiblePassword" android:layout_width="match_parent"
android:layout_height="wrap_content" android:password="true" android:textSize="18sp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@drawable/rounded_button"/>
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Minimum password length = 4"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:textAppearance="?android:attr/textAppearanceSmall" />
<EditText android:id="@+id/device_name" android:hint="Phone name (optional)"
android:text="" android:layout_width="match_parent"
android:layout_height="wrap_content" android:textSize="18sp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@drawable/rounded_button"/>
这是背景可绘制的
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#EAEAEA"/>
<corners android:bottomLeftRadius="4dp" android:topRightRadius="4dp"
android:topLeftRadius="4dp" android:bottomRightRadius="4dp"/>
<padding android:left="12dp" android:top="12dp" android:right="12dp" android:bottom="12dp"/>
</shape>
可能出现什么问题?
PVS
答案 0 :(得分:2)
作为一种解决方法,直到Android L得到修复(希望如此),您可以尝试使用
<corners android:radius="4dp" />
因为所有四个角的角半径都相同。在我的快速测试中,这个问题似乎与使用单独的角半径值有关。并适用于我尝试过的所有基于View的类。
还在https://code.google.com/p/android-developer-preview/issues/detail?id=177
添加了报告