2016-03-09 2 views
-1

Я хочу принять приложение: errorTextAppearance = "@ style/TextLabelInput" В динамическом TextInputLayout Чем его использовать.Как установить ошибку TextInputLayout Цвет и размер динамически с кодом

<style name="TextLabelInput" parent="TextAppearance.AppCompat"> 
    <!-- Hint color and label color in FALSE state --> 
    <item name="android:textColorHint">@color/solid_red</item> 
    <item name="android:textSize">16sp</item> 
    <item name="android:textStyle">bold</item> 
    <item name="android:textColor">@color/solid_red</item> 
    <item name="android:duration">200</item> 
    <item name="android:textColorHighlight">@color/solid_red</item> 

    <!-- Label color in TRUE state and bar color FALSE and TRUE State --> 
    <item name="colorAccent">@color/solid_red</item> 
    <item name="colorControlNormal">@color/solid_red</item> 
    <item name="colorControlActivated">@color/solid_red</item> 
    <item name="colorPrimary">@color/solid_red</item> 
    <item name="colorPrimaryDark">@color/solid_red</item> 


</style> 

TextInputLayout input 
input = new TextInputLayout(this); 

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

'setHintTextAppearance (int)'? – pskink

+0

Единственное изменение цвета подсказки Но я хочу изменить плавающий под цвет ярлыка и textize –

+0

плавающий? что плавает? – pskink

ответ

0

Я нашел 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); 
Смежные вопросы