gpt4 book ai didi

android - 图片顶部的波纹效果 - Android

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:54:23 27 4
gpt4 key购买 nike

我一直在我最新的副项目中试验波纹动画。我在寻找在某些情况下使用它处理触摸事件的“优雅”解决方案时遇到了一些麻烦。即图像,尤其是在列表、网格和回收 View 中。动画几乎总是在 View 后面动画,而不是在它上面。这在 Buttons 和 TextViews 中不是问题,但如果您有图像的 GridView,波纹会出现在实际图像的后面或下方。显然这不是我想要的,虽然有一些我认为可以解决的解决方案,但我希望有一些我只是不知道的更简单的方法。

我使用以下代码实现带有图像的自定义 GridView 。我会给出完整的代码 CLICK HERE因此,如果您愿意,可以继续学习。

现在是重要的事情。为了让我的图像在触摸时动画,我需要这个

button_ripple.xml

<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/cream_background">
<item>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Pressed -->
<item
android:drawable="@color/button_selected"
android:state_pressed="true"/>
<!-- Selected -->
<item
android:drawable="@color/button_selected"
android:state_selected="true"/>
<!-- Focus -->
<item
android:drawable="@color/button_selected"
android:state_focused="true"/>
<!-- Default -->
<item android:drawable="@color/transparent"/>
</selector>
</item>
</ripple>

custom_grid.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="horizontal">

<ImageView
android:id="@+id/sceneGridItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_ripple"
android:gravity="center_horizontal"/>

</LinearLayout>

activity_main.xml

<GridView
android:id="@+id/sceneGrid"
android:layout_marginTop="15dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:verticalSpacing="15dp"
android:numColumns="5" />

所有神奇和问题发生的地方是我设置背景的时候。虽然这确实在我的 ImageView 上给我一个波纹动画,但它在 ImageView 后面 设置了动画。我希望动画显示在图像的顶部。所以我尝试了一些不同的东西,比如

将整个网格背景设置为button_ripple。

<GridView
android:id="@+id/sceneGrid"
android:layout_marginTop="15dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:verticalSpacing="15dp"
android:background="@drawable/button_ripple"
android:numColumns="5" />

它完全符合您的想法,现在整个网格都有一个半透明的背景,无论我按什么图像,整个网格都会从网格中心开始动画。虽然这很酷,但这不是我想要的。

将根/父背景设置为 button_ripple。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:background="@drawable/button_ripple"
android:orientation="horizontal">

该区域现在更大并且填充了网格的整个单元格(不仅仅是图像),但是它并没有将它带到前面。

将 custom_grid.xml 更改为 RelativeLayout 并将两个 ImageView 放在彼此之上

custom_grid.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<ImageView
android:id="@+id/gridItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" />

<ImageView
android:id="@+id/gridItemOverlay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:background="@drawable/button_ripple" />

</RelativeLayout>

CustomGridAdapter.java

....
gridItemOverLay = (ImageView) findViewById(R.id.gridItemOverlay);
gridItemOverlay.bringToFront();

这行得通。现在底部的 ImageView 包含我的图像,顶部的动画,给人一种波纹动画在我的图像之上的错觉。老实说,尽管这是一种变通方法。我觉得这不是它的本意。所以我问你们好人,有没有更好的方法,甚至是不同的方法?

最佳答案

我喜欢 android 开发人员的回答,所以我决定研究如何在代码中执行他的解决方案的第 2 步。

您需要从 Jake Wharton 那里获取这段代码:https://gist.github.com/JakeWharton/0a251d67649305d84e8a

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.ImageView;


public class ForegroundImageView extends ImageView {
private Drawable foreground;


public ForegroundImageView(Context context) {
this(context, null);
}


public ForegroundImageView(Context context, AttributeSet attrs) {
super(context, attrs);


TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ForegroundImageView);
Drawable foreground = a.getDrawable(R.styleable.ForegroundImageView_android_foreground);
if (foreground != null) {
setForeground(foreground);
}
a.recycle();
}


/**
* Supply a drawable resource that is to be rendered on top of all of the child
* views in the frame layout.
*
* @param drawableResId The drawable resource to be drawn on top of the children.
*/
public void setForegroundResource(int drawableResId) {
setForeground(getContext().getResources().getDrawable(drawableResId));
}


/**
* Supply a Drawable that is to be rendered on top of all of the child
* views in the frame layout.
*
* @param drawable The Drawable to be drawn on top of the children.
*/
public void setForeground(Drawable drawable) {
if (foreground == drawable) {
return;
}
if (foreground != null) {
foreground.setCallback(null);
unscheduleDrawable(foreground);
}


foreground = drawable;


if (drawable != null) {
drawable.setCallback(this);
if (drawable.isStateful()) {
drawable.setState(getDrawableState());
}
}
requestLayout();
invalidate();
}


@Override protected boolean verifyDrawable(Drawable who) {
return super.verifyDrawable(who) || who == foreground;
}


@Override public void jumpDrawablesToCurrentState() {
super.jumpDrawablesToCurrentState();
if (foreground != null) foreground.jumpToCurrentState();
}


@Override protected void drawableStateChanged() {
super.drawableStateChanged();
if (foreground != null && foreground.isStateful()) {
foreground.setState(getDrawableState());
}
}


@Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
if (foreground != null) {
foreground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight());
invalidate();
}
}


@Override protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
if (foreground != null) {
foreground.setBounds(0, 0, w, h);
invalidate();
}
}


@Override public void draw(Canvas canvas) {
super.draw(canvas);


if (foreground != null) {
foreground.draw(canvas);
}
}
}

这是 attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="ForegroundImageView">
<attr name="android:foreground"/>
</declare-styleable>
</resources>

现在,在您的 layout.xml 中创建您的 ForegroundImageView:

<com.example.ripples.ForegroundImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:foreground="?android:selectableItemBackground"
android:src="@drawable/apples"
android:id="@+id/image" />

图像现在会起波纹。

关于android - 图片顶部的波纹效果 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27847151/

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