如何设置浮动标签文字大小?

时间:2016-02-15 11:33:08

标签: android android-edittext material-design

我想在Android资料EditText中更改浮动标签文字大小,当我设置如下:

<android.support.v7.widget.AppCompatEditText
    android:id="@+id/edt_current"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/str_current"
    android:inputType="number"
    android:singleLine="true"
    android:textSize="20sp" />

它只是更改提示的文本大小并输入文本。

由于浮动标签文字大小在我的UI中看起来太小,我想改变它,任何解决方案?

3 个答案:

答案 0 :(得分:9)

尝试以下代码。这可能会对您有所帮助:

<android.support.design.widget.TextInputLayout
        android:id="@+id/input_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:hintTextAppearance="@style/TextAppearance.AppCompat.Medium.Inverse">

您可以改用app:hintTextAppearance="@style/TextAppearance.AppCompat.Small.Inverse"

答案 1 :(得分:9)

接受的答案帮助我找到了解决方案(即设置确切的字体大小,而不仅仅是使用小型,中型......)。

此外,通过为app:hintTextAppearance定义样式,您还可以简单地设置浮动标签的颜色:)

style.xml中的

<style name="CustomTextAppearance" parent="@android:style/TextAppearance">
    <item name="android:textSize">16sp</item>
    <item name="android:textColor">@color/colorAccent</item>
</style>

并在TextInputLayout中:

<android.support.design.widget.TextInputLayout
android:id="@+id/lyt_goal"
style="@style/CustomTextInput"
app:hintTextAppearance="@style/CustomTextAppearance">

<android.support.v7.widget.AppCompatEditText
    android:id="@+id/edt_goal"
    style="@style/CustomEditText"
    android:hint="@string/str_goal" />

答案 2 :(得分:2)

  

尝试以下代码在正常状态下工作

 <android.support.design.widget.TextInputLayout
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:theme="@style/TextLabel">

     <android.support.v7.widget.AppCompatEditText
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:hint="Hiiiii"
         android:id="@+id/edit_id"/>

 </android.support.design.widget.TextInputLayout>
  

在样式文件夹TextLabel代码中

 <style name="TextLabel" parent="TextAppearance.AppCompat">
    <!-- Hint color and label color in FALSE state -->
    <item name="android:textColorHint">@color/Color Name</item> 
    <item name="android:textSize">20sp</item>
    <!-- Label color in TRUE state and bar color FALSE and TRUE State -->
    <item name="colorAccent">@color/Color Name</item>
    <item name="colorControlNormal">@color/Color Name</item>
    <item name="colorControlActivated">@color/Color Name</item>
 </style>
  

设置为应用程序的主题,它只能突出显示状态

 <item name="colorAccent">@color/Color Name</item>

希望这会对你有帮助!