我需要在我的Android应用程序中使用facebook if button iframe ...如果我使用此代码,我会在PC桌面上看到它,但我在Android中看不到任何内容。
您知道为什么以及是否存在在Android中显示类似按钮的方法? 我正在使用Sencha Architect和Touch 2.3 谢谢
<iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FFacebookDevelopers&width&height=62&colorscheme=light&show_faces=false&header=false&stream=false&show_border=false&appId=780849738633803" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:62px;" allowTransparency="true"></iframe>
<iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FFacebookDevelopers&width&height=62&colorscheme=light&show_faces=false&header=false&stream=false&show_border=false&appId=780849738633803" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:62px;" allowTransparency="true"></iframe>
答案 0 :(得分:0)
就像你说的那样。
这是我的代码:
htmlStrBase1 = '<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fopticaltrend12345%2F&width&layout=button&action=like&show_faces=false&share=false&height=35&appId=780849738633803" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:35px;" allowTransparency="true"></iframe>';
component.add({
xtype: 'container',
id: 'fb-root',
width: 50,
height: 20,
flex:1,
listeners: {
initialize : function (container) {
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
container.setHtml(htmlStrBase);
}
}
});