将前景设置为 imageview
Set foreground to imageview
我将图像视图的前景设置为 select selected。这在 android 6 版本中工作正常。在 select 上,最小版本没有任何变化。请帮助我。
<ImageView
android:id="@+id/style_list_item_image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:foreground="@drawable/style_item_selector"
android:scaleType="center"
android:drawSelectorOnTop="true"
android:clipChildren="true"
android:clipToPadding="true"/>
style_item_selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true">
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size android:width="60dp" android:height="80dp" />
<stroke android:width="1dp" android:color="#ff3591" />
<solid android:color="@color/transparent100" />
<corners android:radius="1dp" />
</shape>
</item>
</selector>
在 build.gradle file
中添加此代码并重建
compile 'com.android.support:multidex:1.0.0'
希望对您有所帮助。 GL :)
从
中找到
我有一个解决方案给你
选择器会像这样
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<size android:width="60dp" android:height="80dp" />
<stroke android:width="1dp" android:color="#ff3591" />
<solid android:color="@android:color/transparent" />
<corners android:radius="1dp" />
</shape>
</item>
ImageView 需要一些总结
<FrameLayout
android:id="@+id/share"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:foreground="@drawable/style_item_selector">
<ImageView
android:id="@+id/style_list_item_image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="center"
android:drawSelectorOnTop="true"
android:clipChildren="true"
android:clipToPadding="true"/>
</FrameLayout>
希望这对你有用!
确保将 onClickListener 附加到 FrameLayout
case R.styleable.View_foreground:
if (targetSdkVersion >= Build.VERSION_CODES.M || this instanceof FrameLayout) {
setForeground(a.getDrawable(attr));
}
break;
这是View.java初始化里面的代码。前景仅适用于 API-23+ 和 FrameLayout
我将图像视图的前景设置为 select selected。这在 android 6 版本中工作正常。在 select 上,最小版本没有任何变化。请帮助我。
<ImageView
android:id="@+id/style_list_item_image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:foreground="@drawable/style_item_selector"
android:scaleType="center"
android:drawSelectorOnTop="true"
android:clipChildren="true"
android:clipToPadding="true"/>
style_item_selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true">
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size android:width="60dp" android:height="80dp" />
<stroke android:width="1dp" android:color="#ff3591" />
<solid android:color="@color/transparent100" />
<corners android:radius="1dp" />
</shape>
</item>
</selector>
在 build.gradle file
中添加此代码并重建
compile 'com.android.support:multidex:1.0.0'
希望对您有所帮助。 GL :)
从
我有一个解决方案给你
选择器会像这样
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<size android:width="60dp" android:height="80dp" />
<stroke android:width="1dp" android:color="#ff3591" />
<solid android:color="@android:color/transparent" />
<corners android:radius="1dp" />
</shape>
</item>
ImageView 需要一些总结
<FrameLayout
android:id="@+id/share"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:foreground="@drawable/style_item_selector">
<ImageView
android:id="@+id/style_list_item_image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="center"
android:drawSelectorOnTop="true"
android:clipChildren="true"
android:clipToPadding="true"/>
</FrameLayout>
希望这对你有用!
确保将 onClickListener 附加到 FrameLayout
case R.styleable.View_foreground:
if (targetSdkVersion >= Build.VERSION_CODES.M || this instanceof FrameLayout) {
setForeground(a.getDrawable(attr));
}
break;
这是View.java初始化里面的代码。前景仅适用于 API-23+ 和 FrameLayout