我不确定 PinItSDK 是否不再工作或问题出在哪里。但是还有另一种方法可以固定内容。您可以使用基本 url 打开 Create Pin 表单,例如
http://www.pinterest.com/pin/create/button/?media=http://www.ournorthstar.com/wp-content/uploads/2013/10/test1.jpg&title=Sample&description=This+is+a+test+description
并将其作为意图传递并开始活动。
例如:
String shareUrl = "http://www.pinterest.com/pin/create/button/?media=http://www.ournorthstar.com/wp-content/uploads/2013/10/test1.jpg&title=Sample&description=This+is+a+test+description"
Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(shareUrl));
startActivity(myIntent);