89

在使用 Android 设计支持库在组件TextInputLayout上方放置浮动标签EditText后,我想知道是否有办法向组件添加浮动标签Spinner(不一定使用设计库)。

通过这个,我的意思是TextView放在上面的东西Spinner(显然没有类似的动画TextInputLayout),但我希望文本大小、字体和颜色与TextInputLayout浮动标签的匹配。

例如,它看起来像这样(参见Spinners 上方的标签):

在此处输入图像描述

正如我之前提到的,我的主要目标是在 上方有一个标签Spinner,就像在TextInputLayout- 所以文本大小、字体、颜色以及标签和组件之间的距离一样。

关于浮动标签文本字段的 Google 设计页面上,有一个图表显示了标签相对于组件的尺寸,但没有指示标签文本颜色或大小:

在此处输入图像描述

所以,总而言之,我在问:
- 如果有一个特殊的组件来实现我的要求或我可以使用的自定义视图,它会是什么,以及我该如何使用它。
- 如果不是,浮动标签的文本大小、颜色和字体是什么,以便我可以在TextView上面放置一个Spinner具有上图所示布局尺寸的标签。


编辑:

Google Design Guidelines for text fields来看,浮动标签有以下内容:

提示和输入字体:Roboto Regular 16sp
标签字体:Roboto Regular 12sp
平铺高度:72dp
文本顶部和底部填充:16dp
文本字段分隔线填充:8dp

以及上面显示的图像。

所以浮动标签字体是:Roboto Regular 12sp。因此,您可以使用 aTextView来显示Spinner标签,因为我不知道View您可以使用任何自定义 s 或特殊组件。

但是,在尝试之后,它看起来并不像图像中显示的示例那么好。自定义视图可能会更好,因为它看起来会更好,但上面的解决方案只是实现接近我最初想要的东西的一种方式。

4

10 回答 10

45

我希望文本大小、字体和颜色与TextInputLayout浮动标签的匹配。

这可以在没有任何外部库的情况下轻松实现。在尝试破解TextInputLayout甚至制作我自己的自定义视图之后,我意识到使用简单TextView的代码需要更少的代码,而且它可能更有效。

可以AppCompat库中复制文本样式。

样式

从材料设计指南中,我们得到以下信息:

  • 标签的下边距应为8dp
  • 标签应与输入文本垂直对齐

以下是指南未提及的有关材料的内容EditText

  • 它有一个左填充4dp
  • 它的标签实际上上面没有任何间距16dp,这是留给界面设计师的:这是有道理的,因为如果你把它放在另一个下面EditText,你只需要一个额外8dp的空间

此外,设计支持库包含焦点元素标签的这种样式:

<style name="TextAppearance.Design.Hint" parent="TextAppearance.AppCompat.Caption">
    <item name="android:textColor">?attr/colorControlActivated</item>
</style>

非活动元素只需使用TextAppearance.AppCompat.Caption.

执行

将以下内容添加到您的dimens.xml文件中:

<dimen name="input_label_vertical_spacing">8dp</dimen>
<dimen name="input_label_horizontal_spacing">4dp</dimen>

然后将其添加到styles.xml

<style name="InputLabel" parent="TextAppearance.AppCompat.Caption">
    <item name="android:paddingBottom">@dimen/input_label_vertical_spacing</item>
    <item name="android:paddingLeft">@dimen/input_label_horizontal_spacing</item>
    <item name="android:paddingRight">@dimen/input_label_horizontal_spacing</item>
</style>

如果您希望标签始终具有突出显示(强调)颜色,请替换TextAppearance.AppCompat.CaptionTextAppearance.Design.Hint来自 Google 设计支持库。EditText但是,如果您在同一屏幕上也有标记视图,这可能看起来有点奇怪。

最后,您可以在应用样式的(或任何其他元素)TextView上方放置一个:Spinner

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/category"
    style="@style/InputLabel" />

结果

以下屏幕截图显示了一个简单示例,其中包含两个普通TextInputLayout视图,后跟一个标签和一个Spinner. 我没有应用额外的8dp间距来进一步分隔它们,但这表明大小、字体和颜色都得到了反映。

里面的元素Spinner有不同的填充,但是我更喜欢与所有其他标签保持垂直对齐以获得更统一的外观。

在此处输入图像描述

于 2016-08-12T11:34:25.737 回答
35

我通过使用 AutoCompleteTextView、禁用键盘并在触摸时显示选项来实现这一点。

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, getResources().getStringArray(R.array.locations));

AutoCompleteTextView mTextView = (AutoCompleteTextView) findViewById(R.id.location);

mTextView.setAdapter(adapter);
mTextView.setKeyListener(null);
mTextView.setOnTouchListener(new View.OnTouchListener(){
    @Override
    public boolean onTouch(View v, MotionEvent event){
        ((AutoCompleteTextView) v).showDropDown();
        return false;
    }
});
于 2016-06-06T11:10:39.060 回答
34

我有一个自己制作的要点来解决你遇到的同样的问题。

一探究竟:

https://gist.github.com/rodrigohenriques/77398a81b5d01ac71c3b

现在我不需要旋转器了。您仍将具有包含动画的浮动标签效果。

于 2015-08-02T20:46:01.193 回答
11

我创建了一个复合View组件,它在Spinner. 可以使用 XML 或 Java 设置标签的文本。

该组件具有 a 的关键特性Spinner不是全部),并且看起来与该TextInputLayout组件相似。

我将它命名为 a LabelledSpinner,它可以作为我在 GitHub 上的UsefulViews Android 库的一部分在Apache 2.0 许可下使用。

要使用它,请在文件中添加库依赖项build.gradle

compile 'com.satsuware.lib:usefulviews:+'

GitHub 存储库中提供了其使用示例(示例应用程序和使用指南)。

于 2015-08-05T16:23:53.087 回答
11

你可以做到这一点: 在此处输入图像描述

使用这样的新材料库样式:

<com.google.android.material.textfield.TextInputLayout
        android:id="@+id/fullNameLay"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

    <androidx.appcompat.widget.AppCompatAutoCompleteTextView
            android:id="@+id/fullNameEt"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
</com.google.android.material.textfield.TextInputLayout>

更多信息: https ://material.io/develop/android/components/menu/

更新: 不可编辑的变体:*AutoCompleteTextView*通过android:inputType="none"AutoCompleteTextView.

于 2019-09-01T13:23:57.963 回答
5

我修改了 Rodrigo 的解决方案以使用适配器,即更像标准 Spinner https://gist.github.com/smithaaron/d2acd57937d7a4201a79

于 2015-11-13T15:30:26.993 回答
5

我有一个替代解决方案,它使用 TextInputLayout 的行为和自定义 DialogFragment (AlertDialog) 来模拟微调器对话框弹出窗口。

布局.xml:

<android.support.design.widget.TextInputLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/your_et"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/your_label"
        android:maxLines="1"
        android:inputType="textNoSuggestions"
        android:textAppearance="@style/TextAppearance.AppCompat.Medium"
        android:focusable="false"
        style="@style/Base.Widget.AppCompat.Spinner.Underlined"/>
</android.support.design.widget.TextInputLayout>

通过 DialogFragment (AlertDialog) 创建自定义微调器

SpinnerFragment.java:

public class SpinnerFragment extends DialogFragment {

private static final String TITLEID = "titleId";
private static final String LISTID = "listId";
private static final String EDITTEXTID = "editTextId";

public static SpinnerFragment newInstance(int titleId, int listId, int editTextId) {
    Bundle bundle = new Bundle();
    bundle.putInt(TITLEID, titleId);
    bundle.putInt(LISTID, listId);
    bundle.putInt(EDITTEXTID, editTextId);
    SpinnerFragment spinnerFragment = new SpinnerFragment();
    spinnerFragment.setArguments(bundle);

    return spinnerFragment;
}

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    final int titleId = getArguments().getInt(TITLEID);
    final int listId = getArguments().getInt(LISTID);
    final int editTextId = getArguments().getInt(EDITTEXTID);
    AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());

    try {
        final String[] items = getResources().getStringArray(listId);

        builder.setTitle(titleId)
                .setItems(listId, new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int pos) {
                        EditText et = (EditText) getActivity().findViewById(editTextId);
                        String selectedText = items[pos];
                        if (!TextUtils.isEmpty(selectedText)) {
                            et.setText(selectedText);
                        } else {
                            et.getText().clear();
                        }
                    }
                });

    } catch (NullPointerException e) {
        Log.e(getClass().toString(), "Failed to select option in " + getActivity().toString() + " as there are no references for passed in resource Ids in Bundle", e);
        Toast.makeText(getActivity(), getString(R.string.error_failed_to_select), Toast.LENGTH_LONG).show();
    }

    return builder.create();
}

}

活动.java:

private void addCustomSpinner() {
    EditText yourEt = (EditText) findViewById(R.id.your_et);
    yourEt.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            showCustomSpinnerDialog(view);
        }
    });
}

private void showCustomSpinnerDialog(View v) {
    int titleId = R.string.your_label;
    int listId = R.array.spinner_selections;
    int editTextId = R.id.your_et;
    SpinnerFragment spinnerFragment = SpinnerFragment.newInstance(titleId, listId, editTextId);
    spinnerFragment.show(getFragmentManager(), "customSpinner");
}

结果

当您单击微调器样式的 TextInputLayout 时,它将触发一个包含您的选择列表的警报对话框。选择选择后,EditText 将填充您的选择,并且标签将按照您想要的方式浮动。

于 2017-01-02T00:57:45.050 回答
3

这是我的诀窍,

好处是一切都会如你所愿,

但不好的是它增加了布局层次结构,你必须在代码中处理功能,这是一个丑陋的解决方案:

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.TextInputLayout
            android:id="@+id/til"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <EditText
                android:id="@+id/edt"
                android:layout_width="match_parent"
                android:layout_height="@dimen/edt_height"
                android:hint="@string/create_gcc_visa_txt_step" />

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

        <Spinner
            android:id="@+id/spn"
            style="@style/MyAppTheme.Base.Spinner"
            android:layout_height="@dimen/edt_height"
            android:layout_alignBottom="@id/til" />

    </RelativeLayout>

并覆盖微调器的适配器,以使所选值透明

public class MySpinnerAdapter extends SimpleAdapter {
    Context mContext;

    public MySpinnerAdapter(Context context, List<String> data, int resource, String[] from, int[] to) {
        super(context, data, resource, from, to);
        mContext = context;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        convertView = super.getView(position, convertView, parent);

        TextView tv = (TextView) convertView.findViewById(android.R.id.text1);
            tv.setTextColor(ContextCompat.getColor(mContext, R.color.transparent));
        return convertView;
    }
}

在微调器中选择后,只需获取选定的文本并将其设置为 EditText ,它将具有与动画相同的效果

yourSpinnerView.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView<String> adapterView, View view, int i, long l) {
            //get your selected text from adapter or from where you want 
            String selectedText = adapterView.getItemAtPosition(i));

            if (i != 0) { 
                edt.setText(selectedText);
            } else { 
                // if in case your spinner have first empty text, 
                // then when spinner selected, just empty EditText.
                edt.setText("");
            }
        }

        @Override
        public void onNothingSelected(AdapterView<?> adapterView) {

        }
    });

如果你有任何问题问我

于 2016-12-16T12:14:59.157 回答
1

这是我用于浮动标签微调器 rey5137 材质库的库

此外,为了将来参考,这里列出了一些很棒的库。 UI 库 核心库

于 2015-08-04T02:51:41.147 回答
0

SpinnerCustom.java

package com.pozitron.tfkb.customviews;

import android.content.Context;
import android.content.res.TypedArray;
import android.support.annotation.Nullable;
import android.text.SpannableString;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;

import com.pozitron.commons.customviews.TextViewFont;
import com.pozitron.tfkb.R;

import butterknife.BindView;
import butterknife.ButterKnife;

/**
 * Created by so12607 on 31/01/2018.
 */

public class SpinnerCustom extends LinearLayout {

    @BindView(R.id.layoutSpinnerCustomLabel)
    TextViewFont layoutSpinnerCustomLabel;

    @BindView(R.id.layoutSpinnerCustomSpinner)
    TextViewFont layoutSpinnerCustomSpinner;

    @BindView(R.id.layoutSpinner)
    LinearLayout layoutSpinner;

    private View v;

    public SpinnerCustom(Context context) {
        this(context, null);
    }

    public SpinnerCustom(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);

    }

    public SpinnerCustom(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);

        v = LayoutInflater.from(context).inflate(R.layout.layout_spinner_custom, this, true);
        ButterKnife.bind(this);

        if (!isInEditMode()) {

            TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.SpinnerCustom, 0, 0);
            final String label = array.getString(R.styleable.SpinnerCustom_label);
            final boolean enable = array.getBoolean(R.styleable.SpinnerCustom_enabled, true);
            layoutSpinnerCustomLabel.setText(label);

            layoutSpinnerCustomLabel.setEnabled(enable);
            layoutSpinnerCustomSpinner.setEnabled(enable);
            layoutSpinner.setEnabled(enable);
            layoutSpinner.setClickable(enable);
            v.setEnabled(enable);
            v.setClickable(enable);
            array.recycle();
        }
    }

    public void setText(String text) {
        layoutSpinnerCustomSpinner.setText(text);
    }

    public void setText(SpannableString text) {
        layoutSpinnerCustomSpinner.setText(text);
    }

    public void setText(CharSequence text) {
        layoutSpinnerCustomSpinner.setText(text);
    }

    public void setLabel(String text) {
        layoutSpinnerCustomLabel.setText(text);
    }

    public void setError(SpannableString text) {
        layoutSpinnerCustomSpinner.setError(text);
    }

    public void setEnabled(boolean enable) {
        layoutSpinnerCustomLabel.setEnabled(enable);
        layoutSpinnerCustomSpinner.setEnabled(enable);
        layoutSpinner.setEnabled(!enable);
        layoutSpinner.setClickable(!enable);
    }
}

layout_spinner_custom.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/layoutSpinner"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <com.pozitron.commons.customviews.TextViewFont
        android:id="@+id/layoutSpinnerCustomLabel"
        style="@style/TextLabel"
        tools:text="label" />

    <com.pozitron.commons.customviews.TextViewFont
        android:id="@+id/layoutSpinnerCustomSpinner"
        style="@style/SpinnerText"
        android:clickable="false" />

</LinearLayout>

样式.xml

<style name="TextLabel" parent="android:Widget.TextView">
    <item name="font">@integer/font_GTEestiDisplay_Regular</item>
    <item name="android:layout_width">match_parent</item>
    <item name="android:textSize">14sp</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:gravity">bottom</item>
    <item name="android:textColor">@color/greyLabel</item>
</style>

<style name="SpinnerText" parent="EditText">
    <item name="font">@integer/font_GTEestiDisplay_Medium</item>
    <item name="android:gravity">bottom</item>
    <item name="android:textSize">17sp</item>
    <item name="android:minHeight">35dp</item>
    <item name="android:focusable">false</item>
    <item name="android:background">@drawable/spinner_selector</item>
    <item name="android:text">@string/select</item>
    <item name="android:textColor">@color/selector_spinner_text</item>
</style>
于 2018-02-23T08:35:16.077 回答