从Android应用程序打开Vine配置文件

时间:2013-06-13 17:54:30

标签: android android-intent uri vine

我尝试通过代码打开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:// for twitter:// URI方案,它按预期工作。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分: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)));
}

答案 1 :(得分:-1)

  

为什么getVineIntent没有失败?

为什么会这样?你所做的只是构建一个Intent

  

我该如何做到这一点?

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