在android中的xml里怎么布置在一个图片上显示文字 5
5个回答
展开全部
可以用FrameLayout来实现。在FrameLayout控件中用ImageView和TextView就能实现上面的效果。(RelativeLayout也能实现,方法和FrameLayout基本一样)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看你用什么控件了,比如 像button这样的可以给个background为图片然后button上面写文字,也可以达成你说的效果。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
采用RelativeLayout或FrameLayout都可以实现
比如:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@+id/img"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/add" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center"
android:textColor="@color/black"
/>
</RelativeLayout>
ImageView和TextView是重叠显示的
比如:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@+id/img"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/add" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center"
android:textColor="@color/black"
/>
</RelativeLayout>
ImageView和TextView是重叠显示的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
图片可以经过PS等工具处理,将文字添加上去就成了啊。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
将图片设置为背景,如何添加文字在上面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |