首页 > 其他分享 >android基础-ConstraintLayout

android基础-ConstraintLayout

时间:2023-06-02 20:03:13浏览次数:44  
标签:layout toRightOf app 基础 constraintRight ConstraintLayout constraintBottom androi


资料

约束布局ConstraintLayout看这一篇就够了

ConstraintLayout布局 居中|居右 实现。

ConstraintLayout中TextView文字超过屏幕问题

ConstraintLayout

ConstraintLayout字体超出屏幕解决方法

约束布局ConstraintLayout看这一篇就够了

具体的方法

layout_constraintLeft_toLeftOf
layout_constraintLeft_toRightOf
layout_constraintRight_toLeftOf
layout_constraintRight_toRightOf
layout_constraintTop_toTopOf
layout_constraintTop_toBottomOf
layout_constraintBottom_toTopOf
layout_constraintBottom_toBottomOf
layout_constraintBaseline_toBaselineOf
layout_constraintStart_toEndOf
layout_constraintStart_toStartOf
layout_constraintEnd_toStartOf
layout_constraintEnd_toEndOf

位于父布局的左边右边

app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintBottom_toTopOf="parent"
    app:layout_constraintTop_toBottomOf="parent"

TextView超出的范围

<TextView
        android:id="@+id/lll"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_marginLeft="@dimen/oppo_size_132"
        android:ellipsize="end"
        android:gravity="center_vertical"
        android:lines="1"
        android:text="abcdefghijklmnopqrstuvwxyz1234567890"
        android:textColor="@color/color_333333"
        android:textSize="@dimen/oppo_size_68"
        app:layout_constraintEnd_toStartOf="@+id/ddd"
        app:layout_constraintRight_toRightOf="@+id/ddd"
        app:layout_constraintStart_toStartOf="parent" />

    <TextView
        android:id="@+id/ddd"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:ellipsize="end"
        android:gravity="center_vertical"
        android:lines="1"
        android:text="全部专题"
        android:textColor="@color/color_333333"
        android:textSize="@dimen/oppo_size_68"
        app:layout_constraintRight_toRightOf="parent" />


标签:layout,toRightOf,app,基础,constraintRight,ConstraintLayout,constraintBottom,androi
From: https://blog.51cto.com/u_11797608/6404750

相关文章

  • KOOM原理分析之一些基础知识
    文章目录资料Profile工具的使用内存性能分析器概览内存计算方式查看内存分配情况(Record一段)查看全局JNI引用原生内存性能分析器将堆转储另存为HPROF文件HPROFAgentBinaryDumpFormat(format=b)HandlingofArrays资料使用内存性能分析器查看应用的内存使用情况HPROFAgentPr......
  • Android利用tcpdump抓包
    [b]Instructions[/b][url]http://source.android.com/porting/tcpdump.html[/url][b]SourceCodeandDocuments[/b][url]http://www.tcpdump.org/[/url][b]CompiledBinaryDownload[/b][url]http://www.strazzere.com/android/tcpdump[/url]......
  • 动态规划基础之矩阵取数问题 51nod1083
    题目地址:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1083题目:1083 矩阵取数问题基准时间限制:1 秒空间限制:131072 KB分值: 5 难度:1级算法题例如:3*3的方格。133213221......
  • android: workaround for slow ‘building workspace’ problem in eclipse
    Whiledevelopingforandroidoneclipse3.6ihadtheproblemthateachtimeisavedafile,eclipseblockedmeseveralsecondswith‘buildingworkspace…’.Similartothese:stackoverflow–android-compilation-is-slow-using-eclipsestackoverflow–android-......
  • 51nod 1298 圆与三角形(基础题,计算几何)
    题目链接:点击打开链接1298 圆与三角形题目来源: HackerRank基准时间限制:1 秒空间限制:131072 KB分值: 0 难度:基础给出圆的圆心和半径,以及三角形的三个顶点,问圆同三角形是否相交。相交输出"Yes",否则输出"No"。(三角形的面积大于0)。Inp......
  • Android通过 SharedPreference 实现用户名与密码的存储与调用
    注:Android实验课(一)的内容一、实验原理1.1实验目标编程实现用户名与密码的存储与调用。1.2实验要求设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedPreference,读取不到该用户名提示用户不存在,用......
  • Android中实现ContentResolver对系统中所有联系人的访问
    一、实现方法思路:朝着实验要求和目的去想,要想访问系统中的联系人,可以利用ContentResolver类来访问,使用ContentResolver类可以访问别的应用程序通过ContentProvider提供的数据,这里可以用Android系统提供的标准的ContentProvider来对手机联系人进行访问。还有要想实现长......
  • Android中实现网络图片的获取
    在Android中要想获取网络资源,可以使用HttpURLConnection和HttpsURLConnection来实现相关功能。下面案例实现了基于URL的简单请求响应,通过HttpURLConnection获取连接,通过InputStream获取输入流,BitmapFactory将数据流转换为Bitmap,再将Bitmap通过线程的Message发送出去,Handl......
  • Web安全测试—Web应用基础
    基本构件Web应用有各种各样的形式和规模。可能是一台服务器,使用相当轻量级的脚本语言,向用户发送各种类型的报告;也可能是庞大的B2B工作流系统,每小时处理上百万条订单和发票;也可能是介于两者之间的任何形式。什么是技术栈任何Web应用中,我们都必须考虑一套技术,这......
  • WebStorm前端启动JetLinks 物联网基础平台(2.x)
    目录一、环境准备二、下载源码三、安装依赖四、修改配置五、启动项目六、访问项目一、环境准备1.降级node版本为12.22.0使用node版本管理器gnvm_苍穹之跃的博客-以管理员身份打开cmd,cd到node安装目录。2.降级npm版本为[email protected]二、下载源码jetlinks-ui-antd:......