无法在Android中将模式背景设置为透明

时间:2019-02-11 16:16:17

标签: modal-dialog nativescript nativescript-telerik-ui

无法将本机脚本模式窗口的背景设置为透明

我在下面的链接中做了一个例子。 https://play.nativescript.org/?template=play-js&id=6xzzC2

<!-- >> modal-view-xml -->
<Page backgroundColor="transparent" xmlns="http://www.nativescript.org/tns.xsd"
    shownModally="onShownModally" height="300" width="250">

    <StackLayout borderRadius="30" backgroundColor="green">
        <Label text="android" textWrap="true" />
        <Label text="android" textWrap="true" />
        <Label text="android" textWrap="true" />
        <Label text="android" textWrap="true" />
        <Label text="android" textWrap="true" />
        <Label text="android" textWrap="true" />
        <Label text="android" textWrap="true" />
    </StackLayout>

</Page>
<!-- << modal-view-xml -->

我需要一个带边框的模态窗口

1 个答案:

答案 0 :(得分:0)

尝试一下

if (page._dialogFragment) {
    page._dialogFragment.getDialog().getWindow().setBackgroundDrawable(new android.graphics.drawable.ColorDrawable(android.graphics.Color.TRANSPARENT));
}

Playground Sample