如何在xamarin中设置文本动画?

问题描述 投票:0回答:1

我在XAML中有类似的内容:

<StackLayout>
    <AbsoluteLayout>
        <StackLayout2>
            <Button>
            <Something>
        </StackLayout2>

        <Label animated>
    </AbsoluteLayout>

    <any content ...>
</StackLayout>

我希望动画在单击按钮时从上到下移动文本。在动画期间,标签应位于stacklayout2的后面。仿佛从下面移了过来。 AbsoluteLayout的高度应增加。任何内容也应转移。如何实现呢?

我对任何内容转换都特别感兴趣。

据我了解,动画本身很容易实现:等待showingText.TranslateTo(0,120,2000);

c# xamarin xamarin.forms xamarin.android
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.