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

Làm cách nào để tạo bố cục thông báo tùy chỉnh và màu văn bản trong Android?

Ví dụ này trình bày cách tạo bố cục thông báo và màu văn bản 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.

    
  Bước 3  - Thêm mã sau vào src / MainActivity.java 

 package com.app.sample; import androidx.appcompat.app.AppCompatActivity; nhập androidx.core.app.NotificationCompat; nhập android.os.Bundle; nhập android.os.Bundle; nhập android.app.Activity; nhập android.app.NotificationManager; nhập android.app.PendingIntent; nhập android.content.Intent; nhập android.view.Menu; nhập android.view.View; nhập android.view.View.OnClickListener; nhập android.widget.Button; import android.widget.RemoteViews; public class MainActivity mở rộng AppCompatActivity {@Override được bảo vệ void onCreate (Gói đã lưuInstanceState) {super.onCreate (saveInstanceState); setContentView (R.layout.notificationmain); Nút bnotify =(Nút) findViewById (R.id.notification); Nút bcustomnotify =(Nút) findViewById (R.id.customnotification); bnotify.setOnClickListener (new OnClickListener () {public void onClick (View arg0) {Notification (); // CỬA CUỐN Phương thức được tạo tự động}}); bcustomnotify.setOnClickListener (new OnClickListener () {public void onClick (View arg0) {CustomNotification (); // TODO khai phương thức được tạo tự động}}); } public void Notification () {// Đặt Tiêu đề Thông báo String strtitle =getString (R.string.notificationtitle); String strtext =getString (R.string.notificationtext); Ý định có ý định =Ý định mới (cái này, NotificationView.class); ý định.putExtra ("tiêu đề", strtitle); ý định.putExtra ("văn bản", strtext); PendingIntent pIntent =PendingIntent.getActivity (cái này, 0, ý định, PendingIntent.FLAG_UPDATE_CURRENT); NotificationCompat.Builder builder =new NotificationCompat.Builder (this) .setSmallIcon (R.drawable.logosmall) .setTicker (getString (R.string.notificationticker)) .setContentTitle (getString (R.string.notificationtitle)) .setContentText R.string.notificationtext)) .addAction (R.drawable.ic_launcher, "Action Button", pIntent) .setContentIntent (pIntent) .setAutoCancel (true); NotificationManager notificationmanager =(NotificationManager) getSystemService (NOTIFICATION_SERVICE); notificationmanager.notify (0, builder.build ()); } public void CustomNotification () {RemoteViews remoteViews =new RemoteViews (getPackageName (), R.layout.customnotification); String strtitle =getString (R.string.customnotificationtitle); String strtext =getString (R.string.customnotificationtext); Ý định có ý định =Ý định mới (cái này, NotificationView.class); ý định.putExtra ("tiêu đề", strtitle); ý định.putExtra ("văn bản", strtext); PendingIntent pIntent =PendingIntent.getActivity (cái này, 0, ý định, PendingIntent.FLAG_UPDATE_CURRENT); NotificationCompat.Builder builder =new NotificationCompat.Builder (this) .setSmallIcon (R.drawable.logosmall) .setTicker (getString (R.string.customnotificationticker)) .setAutoCancel (true) .setContentIntent (pIntent) .setContent (remoteViewsset); remoteViews.setImageViewResource (R.id.imagenotileft, R.drawable.ic_launcher); remoteViews.setImageViewResource (R.id.imagenotiright, R.drawable.androidhappy); remoteViews.setTextViewText (R.id.title, getString (R.string.customnotificationtitle)); remoteViews.setTextViewText (R.id.text, getString (R.string.customnotificationtext)); // Tạo Trình quản lý thông báo NotificationManager notificationmanager =(NotificationManager) getSystemService (NOTIFICATION_SERVICE); // Xây dựng Thông báo với Trình quản lý Thông báo notificationmanager.notify (0, builder.build ()); } @Override public boolean onCreateOptionsMenu (Menu menu) {// Làm phồng menu; điều này sẽ thêm các mục vào thanh tác vụ nếu nó hiện diện. getMenuInflater (). phồng lên (R.menu.activity_main, menu); trả về true; }} 

Bước 4 - Thêm mã sau vào res / layout / notification.xml.

      

Bước 5 - Thêm mã sau vào res / layout / customnotification.xml.

        

Bước 6 - Thêm mã sau vào res / layout / notificationview.xml.

        

Bước 7 - Thêm mã sau vào Manifests / AndroidManifest.xml

            

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ừ studio android, 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 Run 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 -

Làm cách nào để tạo bố cục thông báo tùy chỉnh và màu văn bản trong Android?