作者:韵丽雅舍现代专业女子养生馆 | 来源:互联网 | 2023-10-12 11:54
我正在尝试编写一个独立于当前组件的组件库,或者用户在其中使用页面,可以切换到另一个显示webview的页面。在android中,这很容易做到,因为获得了活动(页面)上下文并用您想要的页面刷了一下,如下所示:
public static void openNewPageFromAnonymousPage(Context anonymousContext){
Intent intent = new Intent(anonymousContext,Specificactivity.class);
anonymousContext.startactivity(intent);
}
是否可以在react-native中使用,因为我试图在不接触原生端的情况下构建库?