ImageView和TextView float(左/右)Android

前端之家收集整理的这篇文章主要介绍了ImageView和TextView float(左/右)Android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一种方法来将我的文字放在我的图像视图周围(所以像css float左/右).

如何在Android中执行此操作?我已经使用android:layout_alignParentLeft =“true”(放置我的图像左侧)和android:layout_alignParentRight =“true”为我的textview,但
textview在imageView旁边,当我有一个长文本时,它不会继续在ImageView下面.

有任何想法吗?

解决方法

我有同样的问题,试图让一个ImageView对齐在一个RelativeLayout的左边.我使用android:scaleType =“fitStart”来修复它.

我的XML文件

<RelativeLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="horizontal"
      android:layout_height="fill_parent"
      android:layout_width="fill_parent"
      android:padding="10dp">
     <ImageView
         android:layout_height="50dp"
         android:id="@+id/country_icon"
         android:layout_alignParentLeft="true"
         android:layout_width="wrap_content"
         android:scaleType="fitStart" />          
</RelativeLayout>
原文链接:https://www.f2er.com/css/217175.html

猜你在找的CSS相关文章