Android中的点击错误按钮

时间:2018-09-01 05:22:34

标签: android xamarin.forms

我正在为应用程序使用Xamarin.forms版本3.0.0.561731。问题是,当单击一个按钮时,像左上角的对象之类的另一个按钮出现了几秒钟,这很烦人,我一直在搜索花了几个小时,尝试了发现的东西,但是没有运气。

我尝试升级到最新的xamarin.forms版本,还尝试将其降级到2.4.0,但问题仍然存在。

请指导我摆脱点击/单击按钮时的视觉效果问题。

 <Button BorderRadius="5" Text="Continue" HorizontalOptions='FillAndExpand' BackgroundColor="#1976D2" TextColor="White" Command="{Binding ContinueFormCommand}">
        <Button.FontSize>
           <OnIdiom x:TypeArguments="x:Double">
               <OnIdiom.Phone>
                    <OnPlatform x:TypeArguments="x:Double" iOS="13" Android="15" WinPhone="30"/>
                </OnIdiom.Phone>
                <OnIdiom.Tablet>
                    <OnPlatform x:TypeArguments="x:Double" iOS="13" Android="15" WinPhone="30"/>
                </OnIdiom.Tablet>
                  </OnIdiom>
           </Button.FontSize>
               <Button.HeightRequest>
                  <OnIdiom x:TypeArguments="x:Double">
                   <OnIdiom.Phone>
                        <OnPlatform x:TypeArguments="x:Double" iOS="13" Android="45" WinPhone="30"/>
                    </OnIdiom.Phone>
                    <OnIdiom.Tablet>
                        <OnPlatform x:TypeArguments="x:Double" iOS="13" Android="15" WinPhone="30"/>
                    </OnIdiom.Tablet>
                  </OnIdiom>
             </Button.HeightRequest>
        </Button> 

enter image description here 我在三星设备上遇到了这个问题。

1 个答案:

答案 0 :(得分:0)

此问题在GitHub herehere上开放的时间过长。

要解决此问题,可以使用没有问题的Xamarin.Forms v2.5.0.122203。