Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #985 from unlimish/develop
Browse files Browse the repository at this point in the history
ヒントボタンのタップ可能領域(Android)
  • Loading branch information
cocoa-dev004 authored Jun 7, 2022
2 parents 527a16e + 23e2de1 commit 3826dad
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions Covid19Radar/Covid19Radar/Views/HomePage/HomePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,21 @@
Style="{StaticResource DefaultLabelCaption}"
VerticalOptions="Center"
Text="{x:Static resources:AppResources.HomePageENStatusActiveDescription}" />
<ffimageloading:CachedImage
<ImageButton
x:Name="activeQuestionImage"
AutomationProperties.IsInAccessibleTree="{Binding IsVisibleENStatusActiveLayout}"
AutomationProperties.IsInAccessibleTree="{Binding IsVisibleENStatusActiveLayout}"
AutomationProperties.Name="{x:Static resources:AppResources.HomePageQuestionIconAccessibilityTextAndroid}"
Aspect="AspectFit"
Source="question_icon.png">
<ffimageloading:CachedImage.IsVisible>
Source="question_icon.png"
Padding="5"
BackgroundColor="Transparent"
Command="{Binding Path=OnClickQuestionIcon}">
<ImageButton.IsVisible>
<OnPlatform
x:TypeArguments="x:Boolean"
Android="True"
iOS="False" />
</ffimageloading:CachedImage.IsVisible>
<ffimageloading:CachedImage.GestureRecognizers>
<TapGestureRecognizer Command="{Binding Path=OnClickQuestionIcon}" />
</ffimageloading:CachedImage.GestureRecognizers>
</ffimageloading:CachedImage>
x:TypeArguments="x:Boolean"
Android="True"
iOS="False" />
</ImageButton.IsVisible>
</ImageButton>
<ImageButton
x:Name="activeQuestionButton"
AutomationProperties.IsInAccessibleTree="{Binding IsVisibleENStatusActiveLayout}"
Expand Down

0 comments on commit 3826dad

Please sign in to comment.