我不知道如何添加一个链接到Android应用程序上的页面Facebook。 我已经有一个想要点击的图像按钮,并将用户发送到我们的Facebook页面。 感谢
答案 0 :(得分:0)
在布局中使用WebView并尝试此
public void onClick(View v){
String url = "www.facebook.com";
mWebView.setWebViewClient(new WebViewClient(){
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
});
}
答案 1 :(得分:0)
试试这样:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
addListenerOnButton();
}
public void addListenerOnButton() {
imageButton = (ImageButton) findViewById(R.id.imageButton1);
imageButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.facebook.com"));
startActivity(browserIntent);
}
});
}
}
在XML Layout中添加:
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/android_button" />