0

我正在尝试通过代码将 Vine ( https://vine.co/ ) Android 应用程序打开到特定的个人资料页面。我一直在尝试通常的方法,通过 URI 没有运气。这是我当前的非功能代码:

public void vineButtonClicked(View view)
{
    Intent vineIntent = getVineIntent(view.getContext(), VINE_PROFILE_ID);

    try {
        startActivity(vineIntent);          
    } catch(Exception e) {
        // getVineIntent() doesn't fail on returning a new intent with 
        // the vine:// URI, so this catches the failed intent.  Why 
        // doesn't getVineIntent fail?
        Toast.makeText(view.getContext(), "Vine is not installed!", Toast.LENGTH_SHORT).show();
    }
}

public Intent getVineIntent(Context context, String userProfile) {
    try {
         return new Intent(Intent.ACTION_VIEW,
                 Uri.parse("vine://user/".concat(userProfile)));
    } catch (Exception e) {
        return getWebViewIntent("http://vine.co");
    }
}

我尝试将 vine:// 换成 twitter:// URI 方案,它按预期工作。我怎样才能使这项工作?

4

2 回答 2

2

像这样的东西可以完成这项工作:

String vineUrl = "https://vine.co/u/<PAGE_ID>";
Intent vineIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(vineUrl));
vineIntent.setPackage("co.vine.android");

try {
    startActivity(vineIntent);
} catch (ActivityNotFoundException e) {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(vineUrl)));
}
于 2014-09-08T10:17:51.313 回答
-1

为什么 getVineIntent 不会失败?

为什么会呢?您所做的只是构建一个Intent.

我怎样才能使这项工作?

在 Vine 找到一份工作,并vine:// Uri在某些应用程序中添加对值的支持。显然,您没有响应此类的应用程序,Uri我假设您的设备上已经安装了一些 Vine 客户端。

于 2013-06-13T18:09:47.917 回答