布局代码如下:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="50dip"
android:orientation="horizontal" >
<View
android:id="@+id/guide_v_first"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/guide_buttom_style" />
<View
android:id="@+id/guide_v_secend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/guide_buttom_style" />
<View
android:id="@+id/guide_v_thrid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/guide_buttom_style" />
</LinearLayout>
shape代码如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="15dp"
android:innerRadiusRatio="1"
android:shape="ring"
android:thickness="0dp"
android:thicknessRatio="2"
android:useLevel="false" >
<solid android:color="#909090" />
<stroke
android:width="0.1dp"
android:color="@color/lightpink" />
</shape>
出现的效果却是
就一个我用的是线性布局啊,跪求大神
------解决思路----------------------
用 android:layout_weight="1"设置占据比例就好了
------解决思路----------------------
楼上正解,注意加上 android:layout_width="0dp"。