请帮助我,我在旋转器中遇到问题,我创造了旋转器。适配器只有Imageview。我在工具栏布局中的Linearlayout上添加了微调器。
当我在Spinner中创建视图时,Imageview和箭头之间的空间。如何摆脱这个空间。我已添加下面的图像。检查图像,并帮助我解决这个问题。
工具栏布局如下。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".fragmentbase.Activity_Home">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
app:elevation="0dp">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center|right">
<android.support.v7.widget.SearchView
android:id="@+id/action_search"
style="@style/searchviewTheme"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
<Spinner
android:id="@+id/spnrChildChange"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:dropDownWidth="wrap_content"
android:spinnerMode="dropdown"/>
</LinearLayout>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<include
android:id="@+id/layout_dash_child"
layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
当我设置为Spinner layout_width =&#34; 65&#34;图像隐藏在箭头后面
当我设置为Spinner layout_width =&#34; wrap_content&#34;时,空间出现在圆形图像视图和微调框的箭头之间。
及以下是Spinner Item,它是一个Imageview,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/lnrChildChange"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#2570F9">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/imgChildChange"
android:layout_width="@dimen/profile_img"
android:layout_height="@dimen/profile_img"
android:layout_margin="@dimen/most_most_min_margin"
style="?android:attr/spinnerItemStyle"
android:src="@drawable/place_user"
app:civ_border_color="#ffffff"
app:civ_border_width="1dp" />
</LinearLayout>
我已经使用MI Max,三星j5和Oppo f1进行了测试。 Oppo f1s没问题。其他设备面临问题的地方。