android-alertdialog

    0熱度

    2回答

    我真誠地試圖顯示alert box onClick的Home key,但我沒有成功。所以請幫我寫代碼,否則給我看代碼。 public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { finish(); return false

    1熱度

    1回答

    我遇到了使用自定義XML膨脹AlertDialog的問題。問題是它不尊重我指定的寬度/高度。 volume.xml: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:paddingLeft="6d

    0熱度

    3回答

    @Override protected Dialog onCreateDialog(int id) { switch (id) { case IDD_COLOR: return new AlertDialog(this); // The constructor AlertDialog(context) is not visible } r

    2熱度

    2回答

    我在這個應用程序中實現益智遊戲應用程序創建一個按鈕,在點擊按鈕顯示原始圖像的拼圖。原始圖像顯示在對話框中,然後單擊確定返回實際的頁面怎麼能實現 bitmapOrg = BitmapFactory.decodeResource(getResources(),mThumbIds[GameActivity.level]); 請提出了一些解決方案的迫切這個問題懸而未決多天在此先感謝

    3熱度

    5回答

    我已經做了一個簡單的應用程序,只是提出了一個AlertDialog,列表中有四個項目。我註冊一個上下文菜單。當我長時間點擊其中一個項目時,我會看到上下文菜單。然後我從上下文菜單中選擇一個項目,但onContextItemSelected永遠不會被調用。任何幫助?謝謝。 test.java: package com.cerulean.tech.creations.test; import and