Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

coderLeng/TextGroupView

Open more actions menu
 
 

Repository files navigation

TextGroupView

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

方法一 ARR依赖

TextGroupView.arr Method 1 ARR dependence

android {
    ....
    repositories {
        flatDir {
            dirs 'libs'
        }
    }
}

dependencies {
    implementation(name: 'TextGroupView', ext: 'aar')
}

方法二 JitPack依赖

Method 2 JitPack dependencies

A.项目/build.grade

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

B.项目/app/build.grade

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

效果图

img

xml布局

    <com.android.view.TextGroupView
        android: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.TextGroupView
        android: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.TextGroupView
        android: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.TextGroupView
        android: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>

About

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

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.