Skip to content

maze1377/android-prefix-edittext-textview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

df8559d · Oct 26, 2019

History

5 Commits
Sep 29, 2019
Sep 29, 2019
Oct 26, 2019
Oct 26, 2019
Oct 26, 2019
Sep 29, 2019
Oct 26, 2019
Oct 26, 2019
Sep 29, 2019
Sep 29, 2019
Sep 29, 2019
Sep 29, 2019

Repository files navigation

android-prefix-textView and editView

EditText and TextView with support for non editable prefix and image. Sample Screenshot

#get more performance and low memory Sample Details

Howto?

Either directly via xml:

<com.maze.prefix.PrefixTextView
        android:layout_margin="5dp"
        android:id="@+id/textview3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#1111"
        android:gravity="right|center_vertical"
        android:text="1398/09/23"
        android:textColorHint="#567"
        android:textSize="18sp"
        app:prefix=" تاریخ عضویت: "
        android:textColor="#D500F9"
        app:res="@drawable/term" />

or programmatically in code:

### Setting the prefix
edit_text.prefix = "$"

### Setting the color
edit_text.setHintTextColor(Color.GREEN) 

### Setting the drawable
edit_text.drawable = avatar

See sample code.

Add as Library

Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency

	dependencies {
 		implementation 'com.github.maze1377:android-prefix-edittext-textview:lastVerstion'
	}

current lastVerstion=1.1.1