gpt4 book ai didi

android - 使用 MDC 在 android 中创建 Material 微调器下拉列表

转载 作者:太空宇宙 更新时间:2023-11-03 12:26:20 25 4
gpt4 key购买 nike

我正在研究 Material 组件的 Material 设计 Material.io,一切都很好,我正在尝试使用 MDC 的 TextField 组件创建一个 Material 下拉微调器,但我似乎找不到任何相关文档,是否可以使用 MDC 创建一个微调器?如果是这样,我在哪里可以找到它的文档?

在 TextField 的目录中看到一个微调器,我可以做这样的事情吗?:

enter image description here

最佳答案

这正是你需要的

https://material.io/develop/android/components/menu/#exposed-dropdown-menus

首先在 Textinputlayout 中添加 AutocompleteTextView

<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_text">

<AutoCompleteTextView
android:id="@+id/filled_exposed_dropdown"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>

</com.google.android.material.textfield.TextInputLayout>

然后你可以像这样设计菜单项:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:ellipsize="end"
android:maxLines="1"
android:textAppearance="?attr/textAppearanceSubtitle1"/>

在 java 中初始化适配器:

String[] COUNTRIES = new String[] {"Item 1", "Item 2", "Item 3", "Item 4"};

ArrayAdapter<String> adapter =
new ArrayAdapter<>(
getContext(),
R.layout.dropdown_menu_popup_item,
COUNTRIES);

AutoCompleteTextView editTextFilledExposedDropdown =
view.findViewById(R.id.filled_exposed_dropdown);
editTextFilledExposedDropdown.setAdapter(adapter);

您可以更改样式以满足各种变化,例如:

填充style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu"

大纲

将此样式应用于您的 TextInputLayout:

style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"

密集填充

将此样式应用于您的 TextInputLayout:

style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu"

密集轮廓

将此样式应用于您的 TextInputLayout:

style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu"

关于android - 使用 MDC 在 android 中创建 Material 微调器下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53022001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com