J'essaie de faire une liste horizontale avec une RecyclerView
, que lorsque je mets l'accent sur un élément, en augmente la taille. Je veux faire cet effet:
Avez-vous des idées pour accomplir cela?
Grâce à dextor answer, j'ai pu comprendre cette réponse.
J'ai utilisé la variable FocusChangeListener
et ajouté des états d'animation pour modifier la taille de la vue:
static class ViewHolder extends RecyclerView.ViewHolder {
public ViewHolder(final View root) {
// bind views
// ...
// bind focus listener
root.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
// run scale animation and make it bigger
Animation anim = AnimationUtils.loadAnimation(context, R.anim.scale_in_tv);
root.startAnimation(anim);
anim.setFillAfter(true);
} else {
// run scale animation and make it smaller
Animation anim = AnimationUtils.loadAnimation(context, R.anim.scale_out_tv);
root.startAnimation(anim);
anim.setFillAfter(true);
}
}
});
}
Et le code pour les anims:
scale_in_tv:
<scale xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:duration="300"
Android:fromXScale="100%"
Android:fromYScale="100%"
Android:toXScale="110%"
Android:toYScale="110%"
Android:pivotX="50%"
Android:pivotY="50%">
</scale>
scale_out_tv:
<scale xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:duration="100"
Android:fromXScale="110%"
Android:fromYScale="110%"
Android:toXScale="100%"
Android:toYScale="100%"
Android:pivotX="50%"
Android:pivotY="50%">
</scale>
J'imagine quelque chose comme ça:
FocusChangeListener
à la vue racine de l'élémentstatic class ViewHolder extends RecyclerView.ViewHolder {
public ViewHolder(View root) {
// bind views
// ...
// bind focus listener
root.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
// run scale animation and make it bigger
} else {
// run scale animation and make it smaller
}
}
});
}
}