gpt4 book ai didi

android - 如何在 phonegap 应用程序中添加滚动条

转载 作者:太空狗 更新时间:2023-10-29 16:07:30 25 4
gpt4 key购买 nike

我正在 PhoneGap 中为 Android 平台开发一个应用程序。

在此应用程序中,不显示滚动条。如何在我的应用程序中显示滚动条?

最佳答案

这是我的示例 Activity,它将显示滚动条

public class MyActivity extends DroidGap {

@Override
public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

super.loadUrl("file:///android_asset/www/index.html");

// Display vertical scrollbar and hide horizontal scrollBar
super.appView.setVerticalScrollBarEnabled(true);
super.appView.setHorizontalScrollBarEnabled(false);
// set scrollbar style
super.appView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
}

}

关于android - 如何在 phonegap 应用程序中添加滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10684066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com