圆角不起作用(在android模拟器中)

时间:2012-03-22 11:36:44

标签: android android-layout rounded-corners

我在模拟器中遇到圆角背景形状的问题,我真的无法理解。

形状代码如下:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <corners android:radius="50dip" />
    <stroke 
        android:width="1dip" 
        android:color="#ccffffff" />
    <solid
        android:color="#cc111111" />
    <padding 
        android:left="3dip" android:top="3dip"
        android:right="3dip" android:bottom="3dip" />
</shape>

用于以下相对布局:

<RelativeLayout
            android:id="@+id/loginboxlayout"
            android:layout_width="190dp" 
            android:layout_height="240dp"
            android:layout_centerInParent="true"
            android:background="@drawable/rounded"
            android:padding="0dp" >
(...)

</RelativeLayout>

在图形布局上,在eclipse中,它显示正确,但在模拟器上却没有:screenshots

我正在使用android 4.0。

提前致谢。

3 个答案:

答案 0 :(得分:3)

将形状文件放在res>layout文件夹中,然后

<RelativeLayout
            android:id="@+id/loginboxlayout"
            android:layout_width="190dp" 
            android:layout_height="240dp"
            android:layout_centerInParent="true"
            android:background="@layout/rounded"
            android:padding="0dp" >
(...)

</RelativeLayout>

答案 1 :(得分:0)

Rect.xml ---(将此XML放在可绘制文件夹中)

<?xml version="1.0" encoding="utf-8"?>
 <shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" android:padding="10dp" android:paddingTop="50dp"
    android:layout_marginLeft="50dp">
 <solid android:color="#eeeee0" android:paddingLeft="25dp" />
 <stroke android:width="0.8dp" android:color="#000000" />

<corners android:bottomRightRadius="15dp"
    android:bottomLeftRadius="15dp" android:topLeftRadius="15dp"
    android:topRightRadius="15dp" />

并将其添加到您要围绕的Watever控件 -

android:background="@drawable/rect"

它肯定会有用。

答案 2 :(得分:0)

不要使用dip作为大小格式。请改用dp。

并替换

<corners android:radius="50px" />

而不是

<corners android:radius="50dip" />

它将解决您的问题。

享受。 :)