代码:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/home_product_img1"
android:layout_width="wrap_content"
android:layout_height="120dp"
android:layout_weight="2"
android:gravity="center"
android:src="@drawable/default_pic_240" />
<TextView
android:id="@+id/test"
android:layout_below="@id/home_product_img1"
android:layout_width="0dp"
android:layout_height="20dp"
android:layout_weight="2"
android:text="进口巧克力"
android:textColor="@color/home_blue"
android:textSize="8sp" />
</RelativeLayout>
我想要的就是在图片的下方显示文字:
就是在图片下方显示介绍文字
RelativeLayout 是不支持weight的,也不支持android:orientation="vertical"。这两个都是linearlayout专用的
请问那应该如何安排呢?
1.将RelativeLayout 改为linearlayout,TextView去掉 android:layout_below="@id/home_product_img1"
或者
2.TextView的android:layout_width="0dp"改为android:layout_width="wrap_content",TextView去掉weight属性,RelativeLayout 去掉orientation属性
你要的是这个效果么?
android:id="@+id/rb_dictionary"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"
android:drawableTop="@drawable/rb_dictionary"
android:checked="true"
android:onClick="BottomOnClickListen"
android:paddingTop="10dp" />
android:layout_width="0dp"
android:layout_height="20dp"
android:layout_weight="2"
0dp的应该是layout_height
我发现你真是完全不会
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center">
android:id="@+id/home_product_img1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="2"
android:gravity="center"
android:src="@drawable/default_pic_240" />
android:id="@+id/test"
android:layout_below="@id/home_product_img1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="2"
android:text="进口巧克力"
android:textColor="@color/home_blue"
android:textSize="8sp" />
</LinearLayout>
android:id="@+id/home_product_img1"
android:layout_width="wrap_content"
android:layout_height="120dp"
android:layout_weight="2"
android:gravity="center"
android:src="@drawable/default_pic_240" />
android:id="@+id/test"
android:layout_below="@id/home_product_img1"
android:layout_width="0dp"
android:layout_height="20dp"
android:layout_weight="2"
android:text="进口巧克力"
android:textColor="@color/home_blue"
android:textSize="8sp" />
imgview可以不要 直接在textview 里面设置drawableTop=你的图片 就可以了
如果要使用权重分配比例,就不要用RelativeLayout.
应该使用LinearLayout.
比如宽度要分配比例,那么控件的weight都要设置为0dp。
TextView的android:layout_width属性的值改为warp_content
将RelativeLayout 改为linearlayout
同意@even_妞妞
你这是基础的问题啊!RelativeLayout没有weight这属性 也没有orintentor这个属性,第二文字不显示是因为你设置的宽度为了0dp了。
直接使用线性布局 设置为垂直,然后居中
使用linearlayout啊 或者是使用相对布局android:layout_below="@id/home_product_img1"
android:id="@+id/llCulture"
android:layout_width="300px"
android:layout_height="220px"
android:background="@drawable/app_item_focus_wenhua"
android:gravity="center" >
<ImageView
android:id="@+id/IvCulture"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.5"
android:scaleType="fitXY"
android:src="@drawable/dacitie" />
<TextView
android:id="@+id/TVCulture"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="20dp"
android:gravity="center"
android:text="文化"
android:textColor="#FFFFFF" />
</RelativeLayout>
