2016-03-05 2 views

ответ

1

Я нашел Soultion для этого. Я делаю это в своем коде

<!-- Firstly Make a Xml of TextInputLayout and Edittext Layout --> 

<!-- Text Input Layout--> 
<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:textAppearance="?android:attr/textAppearanceLarge" 
app:errorTextAppearance="@style/TextLabelInput" 
/> 


<!-- Edittext Layout --> 
<?xml version="1.0" encoding="utf-8"?> 
<EditText xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:textColor="@color/txt_color" 
android:textColorHint="@color/txt_color" 
android:textColorHighlight="@color/txt_color" 
android:textSize="21sp" /> 


<!-- In code add this with dynamic Text --> 

TextInputLayout input 

input = new TextInputLayout(this); 
    input =(TextInputLayout)getLayoutInflater().inflate(R.layout.row_inputlayout_item, null); 

input.setLayoutParams(lparams); 
input.setTypeface(tf); 


et= new EditText(this); 
et= (EditText)getLayoutInflater().inflate(R.layout.row_edittext_form, null); 
et.setId(Integer.parseInt(item.getFieldid())); 
et.setLayoutParams(lparams); 
et.setHint(item.getLabel()); 
input.addView(et); 
rl_MainLayout1.addView(input); 
1

Вы должны использовать определить свой стиль и добавить в свой TextInputLayoutapp:errorTextAppearance="@style/custom_textColor_style"

+0

Я использую это в XMl Но я хочу это прагматически в Java-кодировании –

Смежные вопросы