问题描述
项目需求要做一个抽屉效果的菜单,现在抽屉效果实现了,但是个人觉得有点不够好,想请教一下如何在这8张小图片下面添加一些说明性文字。这个布局使用的是ImageView。
解决方案
套在一个framelayout或者relativelayout里例子:<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ImageView android:id="@+id/img" android:layout_width="fill_parent" android:layout_height="250dp" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:scaleType="fitXY" android:src="@drawable/ic_launcher" /> <TextView android:id="@+id/desc_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:layout_centerHorizontal="true" /></RelativeLayout>文字怎么显示自己调整下属性