我正在制作一个安卓应用程序。
我有产品清单。
如果我当时选择一种产品,该产品Linkedin与用户名共享。
我想要下面的代码(twitter 分享的示例代码)。我想要同样的Linkedin。
private final static Handler mTwitterHandler = new Handler();
    private static SharedPreferences prefs;
    public static boolean TWEET_LOGIN = false;
    final static Runnable mUpdateTwitterNotification = new Runnable() {
        public void run() {
        }
    };
    public static void sendTweet(Context con, final String msj) {
        prefs = PreferenceManager.getDefaultSharedPreferences(con);
        Thread t = new Thread() {
            public void run() {
                try {
                    TwitterUtils.sendTweet(prefs, msj);
                    mTwitterHandler.post(mUpdateTwitterNotification);
                } catch (Exception ex) {
                    ex.printStackTrace();
                    Log.d("dhaval-->send tweet:", ex.getMessage().toString());
                }
            }
        };
        t.start();
    }
如果是的话,是否有可能,那怎么办?