Android
 Computer >> コンピューター >  >> プログラミング >> Android

Androidでフルスクリーンのカスタムダイアログを作成するにはどうすればよいですか?


この例は、フルスクリーンのカスタムダイアログを作成する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   android:id="@+id/parent"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity"
   android:gravity="center"
   android:orientation="vertical">
   <Button
      android:id="@+id/customDialog"
      android:text="Custom Dialog"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
</LinearLayout>

上記のコードでは、ボタンを使用しています。ユーザーがボタンをクリックすると、カスタムダイアログが表示されます。

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
package com.example.andy.myapplication;
import android.app.Activity;
import android.graphics.Rect;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
   @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      findViewById(R.id.customDialog).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            Rect displayRectangle = new Rect();
            Window window = MainActivity.this.getWindow();
            window.getDecorView().getWindowVisibleDisplayFrame(displayRectangle);
            final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this,R.style.CustomAlertDialog);
            ViewGroup viewGroup = findViewById(android.R.id.content);
            View dialogView = LayoutInflater.from(v.getContext()).inflate(R.layout.customview, viewGroup, false);
            dialogView.setMinimumWidth((int)(displayRectangle.width() * 1f));
            dialogView.setMinimumHeight((int)(displayRectangle.height() * 1f));
            builder.setView(dialogView);
            final AlertDialog alertDialog = builder.create();
            Button buttonOk=dialogView.findViewById(R.id.buttonOk);
            buttonOk.setOnClickListener(new View.OnClickListener() {
               @Override
               public void onClick(View v) {
                  alertDialog.dismiss();
               }
            });
            alertDialog.show();
         }
      });
   }
}

カスタムダイアログを表示するために、ビューをカスタムビューとして拡張しました。したがって、customview.xmlを作成し、次のコードを追加します-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">
   <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical"
      android:padding="16dp">
      <TextView
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:text="Success"
         android:textAlignment="center"
         android:textAppearance="@style/TextAppearance.AppCompat.Headline" />
      <TextView
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_marginTop="10dp"
         android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eu erat tincidunt lacus fermentum rutrum."
         android:textAlignment="center"
         android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
      <Button
         android:id="@+id/buttonOk"
         android:layout_width="200dp"
         android:layout_height="wrap_content"
         android:layout_gravity="center"
         android:layout_marginTop="15dp"
         android:background="@color/colorPrimary"
         android:text="Ok"
         android:textColor="#FFF" />
   </LinearLayout>
</LinearLayout>

上記のコードでは、以下に示すようにアラートダイアログのカスタムテーマを実装しています-

final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this,R.style.CustomAlertDialog);

次に、以下に示すようにres/styles.xmlにタグを作成します-

<style name="CustomAlertDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
   <item name="android:windowBackground">@drawable/popup_background</item>
</style>

上記のタラでは、popup_backroundとして背景を追加したので、ドローアブルフォルダにpopup_background.xmlとしてドローアブルを作成し、次のコードを追加します-

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="https://schemas.android.com/apk/res/android">
   <solid android:color="#FFFFFF" />
   <corners android:radius="6dp" />
</shape>

フルスクリーンのカスタムアラートダイアログを表示するには、次のコードを使用します-

Rect displayRectangle = new Rect();
Window window = MainActivity.this.getWindow();
window.getDecorView().getWindowVisibleDisplayFrame(displayRectangle);
final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this,R.style.CustomAlertDialog);
ViewGroup viewGroup = findViewById(android.R.id.content);
View dialogView = LayoutInflater.from(v.getContext()).inflate(R.layout.customview, viewGroup, false);
dialogView.setMinimumWidth((int)(displayRectangle.width() * 1f));
dialogView.setMinimumHeight((int)(displayRectangle.height() * 1f));
builder.setView(dialogView);
final AlertDialog alertDialog = builder.create();
Button buttonOk=dialogView.findViewById(R.id.buttonOk);
buttonOk.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
      alertDialog.dismiss();
   }
});
alertDialog.show();

アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[Runicon]をクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-

Androidでフルスクリーンのカスタムダイアログを作成するにはどうすればよいですか?

上記の結果では、初期画面が表示されています。次にボタンをクリックすると、以下に示すように全画面でカスタムダイアログが開きます-

Androidでフルスクリーンのカスタムダイアログを作成するにはどうすればよいですか?



  1. アラートダイアログをAndroidデバイスの画面サイズの50%に表示するにはどうすればよいですか?

    この例は、Androidデバイスの画面サイズの50%を埋めるためにアラートダイアログを作成する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayou

  2. AndroidでGridLayoutを画面サイズに合わせるにはどうすればよいですか?

    この例は、AndroidでGridLayoutを画面サイズに合わせる方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="https://