Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Android

एंड्रॉइड में कस्टम अधिसूचना लेआउट और टेक्स्ट रंग कैसे बनाएं?

<घंटा/>

यह उदाहरण दर्शाता है कि एंड्रॉइड में कस्टम अधिसूचना लेआउट और टेक्स्ट रंग कैसे बनाएं।

चरण 1 - एंड्रॉइड स्टूडियो में एक नया प्रोजेक्ट बनाएं, फाइल ⇒ न्यू प्रोजेक्ट पर जाएं और एक नया प्रोजेक्ट बनाने के लिए सभी आवश्यक विवरण भरें।

चरण 2 - निम्न कोड को res/layout/activity_main.xml में जोड़ें।

 <टेक्स्ट व्यू एंड्रॉइड:लेआउट_विड्थ ="रैप_कंटेंट" एंड्रॉइड:लेआउट_हाइट ="रैप_कंटेंट" एंड्रॉइड:टेक्स्ट ="हैलो वर्ल्ड!" ऐप:layout_constraintBottom_toBottomOf="parent" ऐप:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" />>
 चरण 3 - निम्न कोड को src/MainActivity.java

में जोड़ें <पूर्व>पैकेज com.app.sample;import androidx.appcompat.app.AppCompatActivity;import androidx.core.app.NotificationCompat;import android.os.Bundle;import android.os.Bundle;import android.app.Activity;import android.app.NotificationManager;import android.app.PendingIntent;import android.content.Intent;import android.view.Menu;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button; आयात android.widget.RemoteViews; सार्वजनिक वर्ग MainActivity AppCompatActivity को बढ़ाता है {@Override संरक्षित शून्य onCreate (बंडल सेव्ड इंस्टेंसस्टेट) {super.onCreate (savedInstanceState); setContentView(R.layout.notificationmain); बटन bnotify =(बटन) findViewById(R.id.notification); बटन bcustomnotify =(बटन) findViewById(R.id.customnotification); bnotify.setOnClickListener (नया ऑनक्लिक लिस्टनर () {सार्वजनिक शून्य ऑनक्लिक (देखें arg0) {अधिसूचना (); // TODO ऑटो-जेनरेटेड मेथड स्टब}}); bcustomnotify.setOnClickListener (नया ऑनक्लिक लिस्टनर () {सार्वजनिक शून्य ऑनक्लिक (देखें arg0) { CustomNotification (); // TODO ऑटो-जेनरेटेड मेथड स्टब}}); } सार्वजनिक शून्य अधिसूचना () {// अधिसूचना शीर्षक सेट करें स्ट्रिंग स्ट्रटाइटल =गेटस्ट्रिंग (आर.स्ट्रिंग। अधिसूचना शीर्षक); स्ट्रिंग strtext =getString (R.string.notificationtext); इरादा इरादा =नया इरादा (यह, अधिसूचना दृश्य। वर्ग); इंटेंट.पुटएक्स्ट्रा ("शीर्षक", स्ट्रैटिल); इंटेंट.पुटएक्स्ट्रा ("टेक्स्ट", स्ट्रेटेक्स्ट); PendingIntent pIntent =PendingIntent.getActivity (यह, 0, मंशा, PendingIntent.FLAG_UPDATE_CURRENT); अधिसूचना कॉम्पैट। बिल्डर बिल्डर =नया नोटिफिकेशन कॉम्पैट। बिल्डर (यह) R.string.notificationtext)) .addAction(R.drawable.ic_launcher, "एक्शन बटन", pIntent) .setContentIntent(pIntent) .setAutoCancel(true); अधिसूचना प्रबंधक अधिसूचना प्रबंधक =(अधिसूचना प्रबंधक) सिस्टम सेवा प्राप्त करें (NOTIFICATION_SERVICE); अधिसूचना प्रबंधक। सूचित करें (0, निर्माता। निर्माण ()); } सार्वजनिक शून्य CustomNotification () { RemoteViews RemoteViews =नए RemoteViews (getPackageName (), R.layout.customnotification); स्ट्रिंग स्ट्रटाइटल =getString (R.string.customnotificationtitle); स्ट्रिंग strtext =getString (R.string.customnotificationtext); इरादा इरादा =नया इरादा (यह, अधिसूचना दृश्य। वर्ग); इंटेंट.पुटएक्स्ट्रा ("शीर्षक", स्ट्रैटिल); इंटेंट.पुटएक्स्ट्रा ("टेक्स्ट", स्ट्रेटेक्स्ट); PendingIntent pIntent =PendingIntent.getActivity (यह, 0, मंशा, PendingIntent.FLAG_UPDATE_CURRENT); अधिसूचना कॉम्पैट.बिल्डर बिल्डर =नया नोटिफिकेशन कॉम्पैट।बिल्डर (यह) 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)); // अधिसूचना प्रबंधक अधिसूचना प्रबंधक अधिसूचना प्रबंधक बनाएं =(अधिसूचना प्रबंधक) getSystemService (NOTIFICATION_SERVICE); // अधिसूचना प्रबंधक अधिसूचना प्रबंधक के साथ अधिसूचना बनाएं। सूचित करें (0, बिल्डर। बिल्ड ()); } @CreateOptionsMenu (मेनू मेनू) पर सार्वजनिक बूलियन को ओवरराइड करें {// मेनू को फुलाएं; यह मौजूद होने पर एक्शन बार में आइटम जोड़ता है। getMenuInflater ()। inflate (R.menu.activity_main, मेनू); सच लौटना; }}

चरण 4 - निम्न कोड को res/layout/notification.xml में जोड़ें।

 <बटन android:id="@+id/notification" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android :text="अधिसूचना - 1" /> <बटन android:id="@+id/customnotification" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:layout_below="@ +आईडी/अधिसूचना" android:text="कस्टम अधिसूचना - 1" />

चरण 5 - निम्नलिखित कोड को res/layout/customnotification.xml में जोड़ें।

      

चरण 6 - निम्न कोड को res/layout/notificationview.xml में जोड़ें।

     

चरण 7 - निम्न कोड को Manifests/AndroidManifest.xml

में जोड़ें
 <एप्लिकेशन एंड्रॉइड:अनुमति बैकअप ="सच" एंड्रॉइड:आइकन ="@ मिपमैप / आईसी_लॉन्चर" एंड्रॉइड:लेबल ="@ स्ट्रिंग / ऐप_नाम" एंड्रॉइड:राउंडआईकॉन ="@ मिपमैप / आईसी_लॉन्चर_राउंड" एंड्रॉइड:सपोर्ट आरटीएल ="सच" एंड्रॉइड :theme="@style/AppTheme"> <गतिविधि android:name=".MainActivity"> <इरादे-फ़िल्टर> <कार्रवाई android:name="android.intent.action.MAIN" /> <श्रेणी android:name=" android.intent.category.LAUNCHER" />   

आइए अपना एप्लिकेशन चलाने का प्रयास करें। मुझे लगता है कि आपने अपने वास्तविक Android मोबाइल डिवाइस को अपने कंप्यूटर से कनेक्ट कर लिया है। एंड्रॉइड स्टूडियो से ऐप चलाने के लिए, अपने प्रोजेक्ट की गतिविधि फ़ाइलों में से एक खोलें और टूलबार से रन आइकन पर क्लिक करें। एक विकल्प के रूप में अपने मोबाइल डिवाइस का चयन करें और फिर अपने मोबाइल डिवाइस की जांच करें जो आपकी डिफ़ॉल्ट स्क्रीन प्रदर्शित करेगा -

एंड्रॉइड में कस्टम अधिसूचना लेआउट और टेक्स्ट रंग कैसे बनाएं?


  1. एंड्रॉइड में पेजिंग टेक्स्ट कैसे बनाएं?

    यह उदाहरण दर्शाता है कि Android में पेजिंग टेक्स्ट कैसे बनाया जाता है। चरण 1 - एंड्रॉइड स्टूडियो में एक नया प्रोजेक्ट बनाएं, फाइल ⇒ न्यू प्रोजेक्ट पर जाएं और एक नया प्रोजेक्ट बनाने के लिए सभी आवश्यक विवरण भरें। चरण 2 - निम्न कोड को res/layout/activity_main.xml में जोड़ें। चरण 3 - निम्न कोड

  1. एंड्रॉइड में कस्टम रेटिंग बार कैसे बनाएं?

    यह उदाहरण दर्शाता है कि मैं एंड्रॉइड में कस्टम रेटिंग बार कैसे बना सकता हूं। चरण 1 - एंड्रॉइड स्टूडियो में एक नया प्रोजेक्ट बनाएं, फाइल ⇒ न्यू प्रोजेक्ट पर जाएं और एक नया प्रोजेक्ट बनाने के लिए सभी आवश्यक विवरण भरें। चरण 2 - निम्न कोड को res/layout/activity_main.xml में जोड़ें। चरण 3 - निम्न क

  1. एंड्रॉइड पर टेक्स्ट फ़ाइल कैसे बनाएं और उस फ़ाइल में डेटा कैसे डालें?

    यह उदाहरण दर्शाता है कि Android पर टेक्स्ट फ़ाइल कैसे बनाई जाती है और उस फ़ाइल में डेटा कैसे डाला जाता है। चरण 1 - एंड्रॉइड स्टूडियो में एक नया प्रोजेक्ट बनाएं, फाइल ⇒ न्यू प्रोजेक्ट पर जाएं और एक नया प्रोजेक्ट बनाने के लिए सभी आवश्यक विवरण भरें। चरण 2 - निम्न कोड को res/layout/activity_main.xml म