2017-01-11 20 views
1

私はショーにしたい画像のサイズは、警告ダイアログで、アンドロイドプロジェクトの画像ボタンをクリックすると表示されます。どのようにできるのか? XMLファイルにAndroidスタジオAlertdialog画像をフルサイズで表示

+0

コードと画像を追加してください。 – W4R10CK

+0

ここではスクリーンショットとコードを共有します –

答えて

0

-

AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); 
LayoutInflater inflater = getActivity().getLayoutInflater(); 
View dialogView = inflater.inflate(R.layout.dialog, null); 
builder.setView(dialogView) 
        .setPositiveButton(R.string.create, new DialogInterface.OnClickListener() { 
         @Override 
         public void onClick(DialogInterface dialog, int which) { 

         } 
        }) 
        .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() { 
         @Override 
         public void onClick(DialogInterface dialog, int which) { 

         } 
        }).create().show(); 
+0

詳細についてはこちらのリンクもご覧くださいhttp://www.mkyong.com/android/android-custom-dialog-example / –

0

取引新しいフラグメントにマッチ親でImageViewので - 活動で

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical"> 

     <ImageView 
      android:layout_height="wrap_content" 
      android:layout_width="wrap_content" 
      android:id="@+id/my_image"/> 

</LinearLayout> 

は、コードの下に使用して、カスタムダイアログボックスが表示されます。

関連する問題