如何在Nativescript中为List Item中的元素设置动画?

时间:2015-11-06 12:41:54

标签: animation nativescript

我试图在点击其他项目时为列表项目中的元素设置动画,但我无法找到方法来获取它。

cd "$(git rev-parse --show-toplevel)"
git status -s | awk '!/ M/ && $1 == "M" { print $2 }' |
grep -Fxf .git/ForGeneratingSBConfigAlert.txt

问题是在点击后让元素动画,因为有一个转发器

1 个答案:

答案 0 :(得分:1)

你能做的是:

  1. 将属性(或Id)添加到您的第一个父GridLayout。
  2. 将id添加到要设置动画的GridLayout(在您的情况下 - 使用cssClass =“ElementToAnimate”的GridLayout)。
  3. showElementAndAnimate 函数中的 args 访问您要点按的图片。
  4. 然后获取Image父级,直到您到达具有已指定属性的父级(从第1点开始)。
  5. 当达到正确的GridLayout时,使用函数 getViewById 来获取要设置动画的GridLayout(ID为2的那个。)。
  6. 获得元素后,您可以为其设置动画。