问题描述
- android 文字显示在图片的下方!!!就是不显示
-
代码: <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>
解决方案
你要的是这个效果么?
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" />
解决方案二:
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: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