使用Android设计支持库的TextInputLayout
在EditText
组件上方放置一个浮动标签后,我想知道是否有办法向Spinner
组件添加浮动标签(不一定使用设计库)。
据此,我的意思是Spinner
位于TextInputLayout
上方(显然没有像TextInputLayout
这样的动画),但我想要文字大小,字体和颜色匹配Spinner
的浮动标签。
例如,它看起来像这样(参见Spinner
s上方的标签):
正如我之前提到的,我的主要目标是在TextInputLayout
上方设置一个标签,就像在TextView
中一样 - 所以标签和组件之间的文字大小,字体,颜色和距离都是如此会是一样的。
在上,有一个图表显示了标签相对于组件的尺寸,但没有标签文字颜色或尺寸的指示:
Google Design page about floating label text fields
总而言之,我在问:
- 如果有一个特殊的组件可以实现我的要求或我可以使用的自定义视图,它会是什么,以及如何使用它。
- 如果没有,浮动标签的文字大小,颜色和字体是什么,这样我就可以在Spinner
上方TextView
放置上面图片中显示的布局尺寸。
提示和输入字体:Roboto Regular 16sp
标签字体:Roboto Regular 12sp
瓷砖高度:72dp
文字顶部和底部填充:16dp
文本字段分隔符填充:8dp
以及上面显示的图像。
因此浮动标签字体为: Roboto Regular 12sp 。因此,您可以使用Spinner
来显示View
标签,因为我不知道您可以使用的任何自定义rtb.SelectedText
或特殊组件。
然而,在尝试之后,它看起来并不像图像中显示的那样好。 自定义视图对于此可能更好,因为它可能看起来更好,但上面的解决方案只是实现接近我原来想要的一种方式。
答案 0 :(得分:38)
我希望文字大小,字体和颜色与
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.Caption
替换为Google设计支持库中的TextAppearance.Design.Hint
。但是,如果您在同一屏幕上标记了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
内的元素有不同的填充,但我更喜欢与所有其他标签保持垂直对齐,以获得更均匀的外观。
答案 1 :(得分:34)
我有自己的要点来解决你遇到的同样问题。
检查出来:
https://gist.github.com/rodrigohenriques/77398a81b5d01ac71c3b
现在我不需要纺纱工。您仍将使用包含动画的浮动标签效果。
答案 2 :(得分:25)
我通过使用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;
}
});
答案 3 :(得分:11)
我创建了一个复合View
组件,它在Spinner
上方显示了一个标签。可以使用XML或Java来设置标签的文本。
该组件具有Spinner
(并非所有)的主要功能,以及与TextInputLayout
组件类似的内容。
我将其命名为LabelledSpinner
,并且可以在UsefulViews下的GitHub上的Apache 2.0 License Android库中找到它。
要使用它,请在build.gradle
文件中添加库依赖项:
compile 'com.satsuware.lib:usefulviews:+'
GitHub存储库(样本应用程序和使用指南)都提供了它的用法示例。
答案 4 :(得分:5)
我修改了Rodrigo的解决方案以使用适配器,即更像标准的Spinner https://gist.github.com/smithaaron/d2acd57937d7a4201a79
答案 5 :(得分:5)
我有一个替代解决方案,它使用TextInputLayout的行为和自定义DialogFragment(AlertDialog)来模拟微调器对话框弹出窗口。
layout.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();
}
}
Activity.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将填充您的选择,标签将像你想要的那样浮动。
答案 6 :(得分:4)
这是我的伎俩,
好的一面是,一切都会像你想要的那样发挥作用,但不好的是它增加了布局层次结构,你必须处理代码中的功能,这是一个丑陋的解决方案:
<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) {
}
});
如果您有任何问题请教我
答案 7 :(得分:1)
这是我用于浮动标签微调器的库 rey5137 Material Library
另外,为了将来参考,这里列出了一些很棒的库。 UI Libraries Core Libraries
答案 8 :(得分:1)
具有这样的新材料库样式:
<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/
答案 9 :(得分: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>
style.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>