android-ImageView下面的ImageView

android-ImageView下面的ImageView,第1张

概述我不能将标签放在我想要的地方.我将显示图片.我有以下代码:<RelativeLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:layout_gravity="center"android:layout_weight="1"android:orien

我不能将标签放在我想要的地方.我将显示图片.

我有以下代码:

<relativeLayout    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:layout_gravity="center"    androID:layout_weight="1"    androID:orIEntation="vertical" >    <TextVIEw        androID:ID="@+ID/textVIEwNombreVIDeo"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignleft="@+ID/imageVIEwlogo"        androID:layout_alignParentBottom="true"        androID:layout_alignRight="@+ID/imageVIEwlogo"        androID:lines="2"        androID:scrollHorizontally="false"        androID:singleline="false"        androID:text="Medium Text"        androID:textAppearance="?androID:attr/textAppearance"        androID:textcolor="@androID:color/white"        androID:textcolorlink="@androID:color/white"        androID:textStyle="bold" />    <ImageVIEw        androID:ID="@+ID/imageVIEwlogo"        androID:layout_wIDth="fill_parent"        androID:layout_height="fill_parent"        androID:layout_above="@+ID/textVIEwNombreVIDeo"        androID:layout_centerHorizontal="true"        androID:layout_margin="4dp"        androID:adjustVIEwBounds="true" /></relativeLayout>

图片适合imagevIEw的高度,没关系,我想将textvIEw与图片的左侧放置在一起.

有可能这样做吗?

解决方法:

试试这个代码.

<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:layout_gravity="center"    androID:layout_weight="1"    androID:orIEntation="vertical" >    <TextVIEw        androID:ID="@+ID/textVIEwNombreVIDeo"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:gravity="center"        androID:layout_alignleft="@+ID/imageVIEwlogo"        androID:layout_alignParentBottom="true"        androID:layout_alignRight="@+ID/imageVIEwlogo"        androID:lines="2"        androID:scrollHorizontally="false"        androID:text="Medium Text"        androID:textAppearance="?androID:attr/textAppearance"        androID:textcolor="@androID:color/black"        androID:textcolorlink="@androID:color/white"        androID:textStyle="bold"        androID:layout_marginBottom="10dp" />    <ImageVIEw        androID:ID="@+ID/imageVIEwlogo"        androID:layout_wIDth="fill_parent"        androID:layout_height="fill_parent"        androID:layout_above="@+ID/textVIEwNombreVIDeo"        androID:layout_centerHorizontal="true"        androID:layout_margin="4dp"        androID:src="@drawable/ic_launcher"        androID:adjustVIEwBounds="true"     /></relativeLayout>

下面的用户界面设计来自此代码.根据您的要求.

总结

以上是内存溢出为你收集整理的android-ImageView下面的ImageView全部内容,希望文章能够帮你解决android-ImageView下面的ImageView所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1074847.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存