美文网首页
ConstraintLayout中心对齐图像和文本

ConstraintLayout中心对齐图像和文本

作者: AR7_ | 来源:发表于2019-10-17 11:08 被阅读0次

一、Imageview和TextView对齐

    <ImageView
            android:id="@+id/imageview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_luander"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
        <TextView
            android:id="@+id/textview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:text="文本"
            android:textColor="@color/black"
            app:layout_constraintBottom_toBottomOf="@+id/imageview"
            app:layout_constraintStart_toEndOf="@+id/imageview"
            app:layout_constraintTop_toTopOf="@+id/imageview" />

相关文章

  • ConstraintLayout中心对齐图像和文本

    一、Imageview和TextView对齐

  • LayoutLMv2: Multi-modal Pre-trai

    LayoutLMv2使用了现有的屏蔽视觉语言建模任务,新的文本图像对齐(将文本行与相应的图像区域对齐)和文本图像匹...

  • ConstraintLayout实战第一篇(341)

    ConstraintLayout属性可以参考这篇文章。 对齐 如图,左右双引号需要分别上下边和中间的文本保持一致,...

  • HTML 图像实例

    1、背景图片 2、排列图片-与文本的对齐方式 3、调整图像尺寸 4、为图片显示替换文本 5、制作图像链接 6、创建...

  • 前端—列表文本字体

    [前端 -- 文本属性和字体属性] 文本对齐 text-align 属性规定元素中的文本的水平对齐方式。 属性值:...

  • 【前端】CSS : 对齐、居中

    介绍 文本、元素的对齐和居中在开发中经常会用到。本文分别对文本、元素的对齐、居中进行介绍 文本 文本水平居中 文本...

  • 文本

    文本 text text-align: 文本对齐方式left 左对齐center ...

  • 项目三:基于内容的图像检索

    一、图像检索 图像检索两个框架:基于文本和基于内容 1.基于文本  常规的图像检索框架,图像由文本注释,然后通过文...

  • bootstrap常用类

    一.文本1)对齐方式text-left 文本左对齐 =======> text-align:...

  • CSS入门2(0719)

    07-19 1.文本设置