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.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>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章