2

当用户触摸网格布局时如何获得点击声音?

<GridLayout row="3" colSpan="2" columns="15*,75*,10*" height="12%" rows="*,*" class="card-large box" (tap)="onTap()">
    <Label text="&#xf17b;" class="fa centered icon-category" col="0" rowspan="2"></Label>
    <Label text="MyText" class="category-name" verticalAlignment="bottom" col="1" row="0"></Label>
    <Label text="numbers" verticalAlignment="top" col="1" row="1"></Label>
    <Label text="&#xf054;" class="fa centered icon-arrow" col="2" rowspan="2"></Label>
</GridLayout>

更新:我可以通过访问 android 本机 api 来获得声音,这里是代码:

让 decorView:any = app.android.startActivity.getWindow().getDecorView() decorView.playSoundEffect(android.view.SoundEffectConstants.CLICK)

但我想知道为什么点击 android 布局不会触发音效,..

4

1 回答 1

1

上面的代码应该按预期工作。这是一个演示应用程序,其中当用户点击布局时会触发声音效果(带有魔法发生的点击事件的布局)

于 2017-09-25T12:27:20.887 回答