我試着打開一些url後面的其他問題,但onClick事件只是重新啓動應用程序,它不打開瀏覽器。 Thx尋求幫助Android ImageButton onClick,缺少重要的東西?
更新:這適用於不適用於碎片的活動。
這是我的.xml按鈕
<ImageButton
android:layout_width="55dp"
android:layout_height="55dp"
android:id="@+id/imageButton2"
android:background="@drawable/icon"
android:layout_margin="5dp"
android:layout_weight="1"
android:onClick="EnterButton"/>
這是我的.java與實現的方法。
public void EnterButton(View view) {
Uri uri = Uri.parse("http://www.google.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
}
您是否檢查過您的「EnterButton」是否被觸發?您還可以檢查您的設備是否可以處理此意圖 –