dextor 回答のおかげで、この回答を理解することができました。
FocusChangeListener
を使用し、アニメーションの状態を追加して、ビューのサイズを変更しました。
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);
}
}
});
}
そして、アニメーションのコード:
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>
私はこのようなものを想像しています:
FocusChangeListener
をアイテムのルートビューに添付します。static 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
}
}
});
}
}