TextGroupView (TextView组合控件)

2024-06-24 06:58

本文主要是介绍TextGroupView (TextView组合控件),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

TextGroupView

ImageView + TextView + TextView +TextView+ EditText +ImageView + ImageView 实现的组合控件

JitPack依赖

A.项目/build.grade

	allprojects {repositories {...maven { url 'https://jitpack.io' }}}

B.项目/app/build.grade

	dependencies {implementation 'com.github.RelinRan:TextGroupView:1.0.0'}

效果图

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-YIqqoMk5-1592806567757)(https://github.com/RelinRan/TextGroupView/blob/master/ic_rendering.png)]

xml布局

    <com.android.view.TextGroupViewandroid:layout_width="match_parent"android:layout_height="60dp"android:layout_marginLeft="20dp"android:layout_marginRight="20dp"android:layout_marginTop="20dp"app:left_imageMarginLeft="10dp"app:left_imageSrc="@drawable/text_group_view_ic_head"app:left_imageWidth="50dp"app:left_textPaddingLeft="10dp"app:radius="8dp"app:right_imagePaddingRight="10dp"app:right_imageSrc="@drawable/text_group_view_ic_arrow"app:right_text="更换头像"app:right_textColor="#FFFFFF"app:solid="#161538"></com.android.view.TextGroupView><com.android.view.TextGroupViewandroid:layout_width="match_parent"android:layout_height="60dp"android:layout_marginLeft="20dp"android:layout_marginRight="20dp"android:layout_marginTop="20dp"app:edit_hintText="输入昵称"app:edit_hintTextColor="#FFFFFF"app:edit_textColor="#FFFFFF"app:left_text="昵称"app:left_textColor="#FFFFFF"app:left_textPaddingLeft="10dp"app:radius="8dp"app:right_imagePaddingRight="10dp"app:right_imageSrc="@drawable/text_group_view_ic_arrow"app:solid="#161538"></com.android.view.TextGroupView><com.android.view.TextGroupViewandroid:layout_width="match_parent"android:layout_height="60dp"android:layout_marginLeft="20dp"android:layout_marginRight="20dp"android:layout_marginTop="20dp"app:left_imagePaddingLeft="10dp"app:left_imageSrc="@drawable/text_group_view_ic_item"app:left_text="基本信息"app:left_textColor="#FFFFFF"app:radius="8dp"app:right_imagePaddingRight="10dp"app:right_imageSrc="@drawable/text_group_view_ic_arrow"app:solid="#161538"></com.android.view.TextGroupView><com.android.view.TextGroupViewandroid:layout_width="match_parent"android:layout_height="60dp"android:layout_marginLeft="20dp"android:layout_marginRight="20dp"android:layout_marginTop="20dp"app:center_imagePaddingRight="10dp"app:center_imageSrc="@drawable/text_group_view_ic_head"app:left_text="头像"app:left_textColor="#FFFFFF"app:left_textPaddingLeft="10dp"app:radius="8dp"app:right_imagePaddingRight="10dp"app:right_imageSrc="@drawable/text_group_view_ic_arrow"app:solid="#161538"></com.android.view.TextGroupView>

这篇关于TextGroupView (TextView组合控件)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1089474

相关文章

hdu4869(逆元+求组合数)

//输入n,m,n表示翻牌的次数,m表示牌的数目,求经过n次操作后共有几种状态#include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdlib.h>#includ

lvgl8.3.6 控件垂直布局 label控件在image控件的下方显示

在使用 LVGL 8.3.6 创建一个垂直布局,其中 label 控件位于 image 控件下方,你可以使用 lv_obj_set_flex_flow 来设置布局为垂直,并确保 label 控件在 image 控件后添加。这里是如何步骤性地实现它的一个基本示例: 创建父容器:首先创建一个容器对象,该对象将作为布局的基础。设置容器为垂直布局:使用 lv_obj_set_flex_flow 设置容器

Go组合

摘要 golang并非完全面向对象的程序语言,为了实现面向对象的继承这一神奇的功能,golang允许struct间使用匿名引入的方式实现对象属性方法的组合 组合使用注意项 使用匿名引入的方式来组合其他struct 默认优先调用外层方法 可以指定匿名struct以调用内层方法 代码 package mainimport ("fmt")type People struct{}type Pe

小程序button控件上下边框的显示和隐藏

问题 想使用button自带的loading图标功能,但又不需要button显示边框线 button控件有一条淡灰色的边框,在控件上了样式 border:none; 无法让button边框隐藏 代码如下: <button class="btn">.btn{border:none; /*一般使用这个就是可以去掉边框了*/} 解决方案 发现button控件有一个伪元素(::after

MFC中Spin Control控件使用,同时数据在Edit Control中显示

实现mfc spin control 上下滚动,只需捕捉spin control 的 UDN_DELTAPOD 消息,如下:  OnDeltaposSpin1(NMHDR *pNMHDR, LRESULT *pResult) {  LPNMUPDOWN pNMUpDown = reinterpret_cast(pNMHDR);  // TODO: 在此添加控件通知处理程序代码    if

MFC 控件重绘(2) NM_CUSTOMDRAW, WM_DRAWITEM, 虚函数DrawItem

控件重绘有三种方法: 1 设定界面属性 2 利用Windows的消息机制,通过Windows消息映射(Message Mapping)和反映射(Message Reflecting),在合适的时机修改控件的状态和行为。此方式涉及NM_CUSTOMDRAW和WM_DRAWITEM 3 利用虚函数机制,重载虚函数。即DrawItem虚函数。 对于NM_CUSTOMDRAW,某些支持此消息的控件

组合c(m,n)的计算方法

问题:求解组合数C(n,m),即从n个相同物品中取出m个的方案数,由于结果可能非常大,对结果模10007即可。       共四种方案。ps:注意使用限制。 方案1: 暴力求解,C(n,m)=n*(n-1)*...*(n-m+1)/m!,n<=15 ; int Combination(int n, int m) { const int M = 10007; int

代码随想录训练营day37|52. 携带研究材料,518.零钱兑换II,377. 组合总和 Ⅳ,70. 爬楼梯

52. 携带研究材料 这是一个完全背包问题,就是每个物品可以无限放。 在一维滚动数组的时候规定了遍历顺序是要从后往前的,就是因为不能多次放物体。 所以这里能多次放物体只需要把遍历顺序改改就好了 # include<iostream># include<vector>using namespace std;int main(){int n,m;cin>>n>>m;std::vector<i

INDEX+SMALL+IF+ROW函数组合使用解…

很多人在Excel中用函数公式做查询的时候,都必然会遇到的一个大问题,那就是一对多的查找/查询公式应该怎么写?大多数人都是从VLOOKUP、INDEX+MATCH中入门的,纵然你把全部的多条件查找方法都学会了而且运用娴熟,如VLOOKUP和&、SUMPRODUCT、LOOKUP(1,0/....,但仍然只能对这种一对多的查询望洋兴叹。   这里讲的INDEX+SMALL+IF+ROW的函数组合,

C# 通过拖控件移动窗体

目录 引言一、通过控件事件移动窗体1、创建窗体界面2、添加控件事件3、添加代码 二、通过windowsAPI移动窗体1、 构建窗体和添加事件2、代码展示 引言 在C#Form窗体设计中,如果我们不需要使用默认边框设计自己个性化的窗体(FromBorderStyle=none时),这时候你会发现拖动窗体的功能就没有了,这里需要自己构建方法让用户可以拖动整个窗体,这里我们使用前辈的