要实现这个需求,你可以使用 Android 的 Intent 进行深度链接。你可以在 Intent 的 Data 字段中设置路径前缀,并且通过设置 Intent 的 Action 字段来指定不同的操作。
以下是一个示例代码:
// 动态路径前缀
String dynamicPrefix = "example.com/";
// 静态路径
String staticPath = "page2";
// 创建一个 Intent
Intent intent = new Intent(Intent.ACTION_VIEW);
// 设置 Intent 的 Data 字段,包括动态前缀和静态路径
Uri.Builder builder = new Uri.Builder();
builder.scheme("http")
.authority(dynamicPrefix + staticPath);
Uri uri = builder.build();
intent.setData(uri);
// 启动 Activity
startActivity(intent);
在上面的示例中,我们创建了一个 Intent,并设置了 Data 字段。这里我们使用了动态路径前缀 example.com/
和静态路径 page2
。然后我们使用 intent.setData(uri)
方法将 Uri 对象设置为 Intent 的 Data 字段。
最后,我们可以使用 startActivity(intent)
方法启动适当的 Activity,这将根据传递的 Intent 来打开相应的链接。
请注意,在使用该代码示例之前,请确保在你的 AndroidManifest.xml 文件中正确配置了相关的 Intent 过滤器和 Activity。
希望这个示例对你有帮助!