Computer >> Máy Tính >  >> Lập trình >> Android

Cách tạo Hộp thoại tùy chỉnh trên Android?

Ví dụ này giải thích về cách tôi tạo một thông báo tùy chỉnh trong Android.

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới

Bước 2 - Thêm mã sau vào 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>

Bước 3 - Nhấp vào res từ Dự án → Nhấp chuột phải vào bố cục → Chọn Mới → Tệp tài nguyên bố cục → Đặt tên cho bố cục =“custom_dialog, nhập Bố cục tuyến tính trong“ Phần tử gốc ”và nhấp vào OK

Bước 4 - Thêm mã sau vào 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>

Bước 5 - Thêm mã sau vào 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();
   }
}

Bước 6 - Thêm mã sau vào 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>

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Cách tạo Hộp thoại tùy chỉnh trên Android?


Cách tạo Hộp thoại tùy chỉnh trên Android?