android如何制作内部视图圆形如图所示

时间:2015-01-15 04:52:33

标签: java android user-interface layout

我想用圆形背景实现以下形状,我试过但是我的内部视图没有进入相对布局中的圆形状我将发布我的屏幕截图。

enter image description here

我得到了以下结果,并且我停止了布局 enter image description here     

    <RelativeLayout
        android:id="@+id/circle_layout"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/whitecircle" >

        <RelativeLayout
            android:id="@+id/circle_layoutinner"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_above="@+id/rating_viewtv"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:background="@drawable/circletwo" >

            <TextView
                android:id="@+id/ratingcup_viewtv_fonts"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true"
                android:text="Y"
                android:textColor="@android:color/holo_purple" />
        </RelativeLayout>

        <TextView
            android:id="@+id/rating_viewtv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="3dp"
            android:text="4.5"
            android:textColor="@android:color/holo_purple" />
    </RelativeLayout>

</RelativeLayout>

my whitecircle.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:innerRadius="0dp"
    android:shape="ring"
    android:thicknessRatio="2"
    android:useLevel="false">

    <solid android:color="@color/white" />

</shape>

my circletwo.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:innerRadius="0dp"
    android:shape="ring"
    android:thicknessRatio="2"
    android:useLevel="false">

    <solid android:color="#ff9546" />

</shape>

1 个答案:

答案 0 :(得分:1)

试试这个。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/circle_layout"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:background="@drawable/circletwo" >

    <RelativeLayout
        android:id="@+id/circle_layoutinner"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/rating_viewtv"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" >

        <TextView
            android:id="@+id/ratingcup_viewtv_fonts"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:text="Y"
            android:textColor="#ff0000" />
    </RelativeLayout>

    <TextView
        android:id="@+id/rating_viewtv"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="#ffffff"
        android:gravity="center"
        android:text="4.5"
        android:textColor="#ff0000" />

</RelativeLayout>

使用线性布局

尝试此操作
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/circle_layout"
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:background="@drawable/circletwo"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/ratingcup_viewtv_fonts"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="2.2"
        android:text="Y"
        android:layout_gravity="center"
        android:gravity="center_vertical"
        android:textColor="#ff0000" />

    <TextView
        android:id="@+id/rating_viewtv"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.8"
        android:background="#ffffff"
        android:gravity="center"
        android:text="4.5"
        android:textColor="#ff0000" />


    </LinearLayout>