我希望我的Spinner下拉项目能够填满整个屏幕宽度,即使我的'标题'没有。问题是下拉菜单宽度似乎限制了Spinner的标题宽度。
我的目标是让它填充整个屏幕宽度,在操作栏的正下方没有左右任何间距。与我正在尝试做的类似的是Instagram的菜单来改变个人资料。
我看了类似的问题,但没有找到适用于此的解决方案。还尝试创建自定义适配器并确保其视图的宽度具有match_parent
属性。但也没有用。
main.java (只是易读性代码的相关部分)
mMyListsSpinner = (Spinner) findViewById(R.id.spinner_mylists);
ArrayAdapter<String> snipperAdapter = new ArrayAdapter<String>(
FamilistActivity.this, R.layout.layout_spinner_title, dummyLists);
snipperAdapter.setDropDownViewResource(R.layout.layout_spinner_dropdown);
mMyListsSpinner.setAdapter(snipperAdapter);
mMyListsSpinner.setOnItemSelectedListener(this);
layout_spinner_title.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spinner_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:textColor="@color/color_white_bright"
android:maxLines="1"
style="@style/OverflowMenu"
android:text="this is my list"/>
layout_spinner_dropdown.xml
<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_spinner_dropdown"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_actionbar_height"
android:maxLines="1"
android:textSize="18sp"
android:textColor="@color/color_green_dark"
android:background="@color/color_white_bright"/>
styles.xml (仅限相关部分)
<style name="OverflowMenu" parent="Widget.AppCompat.PopupMenu.Overflow">
<item name="overlapAnchor">false</item>
<item name="android:dropDownVerticalOffset">16dp</item>
<item name="android:dropDownHorizontalOffset">-15dp</item>
</style>
我的工具栏: 的 toolbar.xml
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bar_appbar"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_actionbar_height"
app:layout_collapseMode="pin"
android:background="@color/color_green_bright">
<Spinner
android:id="@+id/spinner_mylists"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:spinnerMode="dropdown"
android:dropDownWidth="match_parent"
style="@style/OverflowMenu"/>
答案 0 :(得分:0)
您可以android:dropDownWidth
使用Spinner
。
例如:
<spinner>
android:dropDownWidth="300dp"
</spinner>
您也可以使用常量
match_parent。 ----&GT;下拉列表应该适合屏幕的宽度。 在API Level 8中引入。
答案 1 :(得分:0)
通过查看 AppCompatSpinner.java 并运行我在 computeContentWidth()
中的这一行中看到的调试器
else if (mDropDownWidth == MATCH_PARENT) {
setContentWidth(spinnerWidth - spinnerPaddingLeft - spinnerPaddingRight);
}
SpinnerPaddingRight 的值不是 0。我通过设置解决了
android:paddingEnd="0dp"
在微调视图中。