다음을 통해 공유


Android의 TabbedPage 페이지 전환 애니메이션

이 .NET 다중 플랫폼 앱 UI(.NET MAUI) Android 플랫폼별은 프로그래밍 방식으로 또는 탭 표시 TabbedPage줄을 사용할 때 페이지를 탐색할 때 전환 애니메이션을 사용하지 않도록 설정하는 데 사용됩니다. 바인딩 가능한 속성을 false다음으로 설정하여 XAML에서 TabbedPage.IsSmoothScrollEnabled 사용합니다.

<TabbedPage ...
            xmlns:android="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;assembly=Microsoft.Maui.Controls"
            android:TabbedPage.IsSmoothScrollEnabled="false">
    ...
</TabbedPage>

또는 흐름 API를 사용하여 C#에서 사용할 수 있습니다.

using Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;
...

On<Microsoft.Maui.Controls.PlatformConfiguration.Android>().SetIsSmoothScrollEnabled(false);

참고 항목

이 플랫폼별 앱은 셸 기반 앱의 탭에 영향을 주지 않습니다.

이 메서드는 TabbedPage.On<Microsoft.Maui.Controls.PlatformConfiguration.Android> 이 플랫폼별이 Android에서만 실행되도록 지정합니다. TabbedPage.SetIsSmoothScrollEnabled 네임스페이스의 Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific 메서드는 페이지 TabbedPage사이를 탐색할 때 전환 애니메이션이 표시되는지 여부를 제어하는 데 사용됩니다. 또한 네임스페이스의 TabbedPage 클래스 Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific 에는 다음 메서드도 있습니다.

  • IsSmoothScrollEnabled에서 페이지 TabbedPage사이를 탐색할 때 전환 애니메이션이 표시되는지 여부를 검색하는 데 사용됩니다.
  • EnableSmoothScroll에서 페이지 TabbedPage사이를 탐색할 때 전환 애니메이션을 사용하도록 설정하는 데 사용됩니다.
  • DisableSmoothScroll에서 페이지 TabbedPage사이를 탐색할 때 전환 애니메이션을 사용하지 않도록 설정하는 데 사용됩니다.