这里我使用的是Floating Label EditText。当我在该文本字段中输入任何文本时,我需要编辑EditText下的行大小。在这里,我添加了供您参考的代码
这是XML中的代码
<android.support.design.widget.TextInputLayout
android:id="@+id/input_layout_last"
android:layout_width="match_parent"
android:layout_height="70dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:layout_marginTop="10dp">
<EditText
android:id="@+id/input_last"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:textSize="12sp"
android:paddingLeft="20dp"
android:theme="@style/MyEditTheme"
android:textColor="@color/white"
android:textColorHint="@color/white"
android:hint="Password" />
</android.support.design.widget.TextInputLayout>
这是我的style.xml
<resources>
<style name="MyMaterialTheme" parent="MyMaterialTheme.Base">
</style>
<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:textColorHint">@color/white</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="MyEditTheme" parent="MyMaterialTheme.Base">
<!-- Used for the bottom line when not selected / focused -->
<item name="colorControlNormal">#383838</item>
<!-- colorControlActivated & colorControlHighlight use the colorAccent color by default -->
</style>
</resources>
这里我需要减小蓝线的大小。