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

Androidでカスタムダイアログボックスを作成するにはどうすればよいですか?


この例は、Androidでカスタムメッセージを作成する方法を示しています。

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

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

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="My Custom Message"
      android:textSize="22sp"
      android:textAlignment="center"
      android:layout_marginTop="30dp"
      android:id="@+id/myCustommessage"/>
   <Button
      android:layout_width="140dp"
      android:layout_height="80dp"
      android:layout_centerInParent="true"
      android:text="Show Message"
      android:backgroundTint="@color/colorPrimary"
      android:textSize="20dp"
      android:textColor="#ffffff"
      android:onClick="btn_showMessage" />
</RelativeLayout>

ステップ3 −プロジェクトから解像度をクリック→レイアウトを右クリック→新規を選択→レイアウトリソースファイル→レイアウトに名前を付ける=「custom_dialog」、「ルート要素」に線形レイアウトと入力し、「OK」をクリックします

ステップ4 −次のコードをcustom_dialog.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   android:orientation="vertical" android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:padding="15dp">
   <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="Enter your Message"
      android:textSize="22sp"
      android:textAlignment="center" />
   <EditText
      android:id="@+id/txt_input"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="10dp"
      android:hint="Enter your Message"
      android:textSize="20sp" />
   <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="15dp">
      <Button
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:backgroundTint="@color/colorPrimary"
         android:text="Cancel"
         android:textColor="#ffffff"
         android:textSize="18sp"
         android:layout_weight="1"
         android:id="@+id/btn_cancel"/>
     <Button
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:backgroundTint="@color/colorPrimary"
         android:text="Okay"
         android:textColor="#ffffff"
         android:textSize="18sp"
         android:layout_weight="1"
         android:id="@+id/btn_okay"/>
   </LinearLayout>
</LinearLayout>

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

に追加します
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
   TextView myCustomMessage;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      myCustomMessage = (TextView)findViewById(R.id.myCustommessage);
   }
   public void btn_showMessage(View view){
      final AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);
      View mView = getLayoutInflater().inflate(R.layout.custom_dialog,null);
      final EditText txt_inputText = (EditText)mView.findViewById(R.id.txt_input);
      Button btn_cancel = (Button)mView.findViewById(R.id.btn_cancel);
      Button btn_okay = (Button)mView.findViewById(R.id.btn_okay);
      alert.setView(mView);
      final AlertDialog alertDialog = alert.create();
      alertDialog.setCanceledOnTouchOutside(false);
      btn_cancel.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            alertDialog.dismiss();
         }
      });
      btn_okay.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            myCustomMessage.setText(txt_inputText.getText().toString());
            alertDialog.dismiss();
         }
      });
      alertDialog.show();
   }
}

ステップ6 −次のコードをandroidManifest.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

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

Androidでカスタムダイアログボックスを作成するにはどうすればよいですか?


Androidでカスタムダイアログボックスを作成するにはどうすればよいですか?


  1. AndroidのActionBarにカスタムビューを表示するにはどうすればよいですか?

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

  2. Outlookでカスタムビューを作成する方法

    Microsoft Outlook コンパクトなど、受信トレイの外観を変えるさまざまなレイアウトを提供します 、シングル およびプレビュー 。カレンダー、連絡先、タスクなど、Outlookの他のインターフェイスでビューを変更することもできますが、カスタムビューを作成する場合はどうでしょうか。カスタムビューは、Outlookで使用できるビューの変更機能を使用して作成されます。 Outlookのビューの変更機能とは何ですか? ビューの変更機能を使用すると、Outlookユーザーは現在のビューを別のビューに変更できます。コンテキストメニューで提供されるビューを選択するか、カスタムビューを作成で