`

Notification布局

阅读更多

     第一步:新建一个工程,命名为Notification;

      第二步:新建一个布局文件(即自定义的notification的布局文件:custom_notification.xml,内容如下:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 
     
    <ImageView  
        android:id="@+id/image" 
        android:layout_width="wrap_content" 
        android:layout_height="fill_parent" 
        android:layout_alignParentLeft="true" 
        android:layout_marginRight="10dp" 
        android:contentDescription="@string/Image" /> 
     
    <TextView  
        android:id="@+id/title" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_toRightOf="@id/image" 
        style="@style/NotificationTitle" /> 
     
    <TextView  
        android:id="@+id/text" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_toRightOf="@id/image" 
        android:layout_below="@id/title" 
        style="@style/NotificationText" /> 
     
</RelativeLayout> 
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android "
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
   
 <ImageView
     android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="10dp"
        android:contentDescription="@string/Image" />
 
    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/image"
        style="@style/NotificationTitle" />
   
    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/image"
        android:layout_below="@id/title"
        style="@style/NotificationText" />
   
</RelativeLayout>
          第三步:新建上面布局文件中引用到的styyes.xml文件,代码如下:

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
    <style name="NotificationText" parent="android:TextAppearance.StatusBar.EventContent" /> 
    <style name="NotificationTitle" parent="android:TextAppearance.StatusBar.EventContent.Title" /> 
</resources> 
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="NotificationText" parent="android:TextAppearance.StatusBar.EventContent" />
    <style name="NotificationTitle" parent="android:TextAppearance.StatusBar.EventContent.Title" />
</resources>
       第四步:修改java源文件,代码如下:

public class CusNotificationActivity extends Activity { 
    private static final int CUSTOM_VIEW_ID = 1; 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
         
        //Notification notification = new Notification();  
        int icon = R.drawable.ic_launcher; 
        CharSequence tickerText = "Notification01"; 
        long when = System.currentTimeMillis(); 
 
        Notification notification = new Notification(icon, tickerText, when); 
         
        RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.custom_notification); 
        contentView.setImageViewResource(R.id.image, R.drawable.notification_image); 
        contentView.setTextViewText(R.id.title, "Custom notification"); 
        contentView.setTextViewText(R.id.text, "This is a custom layout"); 
        notification.contentView = contentView; 
         
        Intent notificationIntent = new Intent(this, CusNotificationActivity.class); 
        PendingIntent contentIntent = PendingIntent.getActivity(CusNotificationActivity.this, 0, notificationIntent, 0); 
        notification.contentIntent = contentIntent; 
         
        String ns = Context.NOTIFICATION_SERVICE; 
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns); 
        mNotificationManager.notify(CUSTOM_VIEW_ID, notification); 
    } 

public class CusNotificationActivity extends Activity {
 private static final int CUSTOM_VIEW_ID = 1;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        //Notification notification = new Notification();
        int icon = R.drawable.ic_launcher;
        CharSequence tickerText = "Notification01";
        long when = System.currentTimeMillis();

        Notification notification = new Notification(icon, tickerText, when);
       
        RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.custom_notification);
        contentView.setImageViewResource(R.id.image, R.drawable.notification_image);
        contentView.setTextViewText(R.id.title, "Custom notification");
        contentView.setTextViewText(R.id.text, "This is a custom layout");
        notification.contentView = contentView;
       
        Intent notificationIntent = new Intent(this, CusNotificationActivity.class);
        PendingIntent contentIntent = PendingIntent.getActivity(CusNotificationActivity.this, 0, notificationIntent, 0);
        notification.contentIntent = contentIntent;
       
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
        mNotificationManager.notify(CUSTOM_VIEW_ID, notification);
    }
}

分享到:
评论

相关推荐

    自定义包含变色progressbar的notification

    4.1创建自定义布局的notification 布局包含progressbar progressbar颜色可以变 自定义progressbar 布局中多个按钮可以点击 动态更新notification中的progressbar

    安卓作业—-慕课移动应用开发作业19之自定义Notification布局

    本篇运用ImageView和TextView等对Notification进行自定义布局 同时这也是中国大学慕课移动终端应用开发的网课作业19,我会持续更新我的作业,如果有需要关注一下吧 说明 1.参考文章安卓仿网易云音乐通知栏控制音乐 2...

    NotificationTest

    三、自定义Notification布局 如果系统默认的通知样式不能满足需求,可以通过`RemoteViews`来实现自定义布局。`RemoteViews`允许开发者创建一个适用于通知的布局,并应用于`NotificationCompat.Builder`: ```java ...

    Notification消息通知 自定义消息通知内容布局

    "Notification消息通知自定义消息通知内容布局" Notification消息通知是Android系统中的一种常见的消息通知机制,通过Notification消息通知,应用程序可以将重要的信息推送给用户,以便用户及时了解应用程序的状态...

    Android-短信弹窗

    最后,UI设计部分,自定义的Notification布局文件(custom_notification.xml)需要根据需求设计,可以包括文本、按钮或其他控件,以展示短信内容并提供相应的操作入口。 在MarioStudio-MessageWatcher项目中,...

    Notification

    在Android开发中,`Notification`是系统提供的一种通知机制,用于在状态栏向用户显示重要的信息或提醒。本文将深入探讨`Notification`的实现,并结合自定义`Dialog`消息展示来增强用户体验。 首先,`Notification`...

    mooc_android_lesson19_Notification自定义布局音乐播放的信息提示

    在"mooc_android_lesson19_Notification自定义布局音乐播放的信息提示"这门课程中,我们将深入学习如何使用Notification来创建一个模拟音乐播放的应用信息提示。 首先,Notification的基本使用涉及到`...

    Notification最新用法、实现Notification的通知栏常驻、Notification的big View、解决Notification点击无效

    - 可以使用`bigTextStyle.bigText()`来设置大文本,`addBigContentView()`添加自定义布局,展示更丰富的信息,如图片、额外的文字等。 - 对于音乐播放、天气预报等需要展示更多信息的应用,big View是理想的选择。...

    android notification完全解析Demo

    在Android开发中,Notification是应用与用户交互的重要方式,它能够在状态栏中显示信息,即使用户不在应用程序中也能提醒用户有新的活动或消息。本文将深入解析Android Notification的工作原理、设计模式以及如何...

    Android notification+Service实时更新

    在Android开发中,`Notification`、`Service`和`BroadcastReceiver`是三个核心组件,它们在许多场景下都有着重要的作用,特别是在实现应用后台运行、实时更新等任务时。本项目"Android notification+Service实时更新...

    Notification的使用示例各种效果

    在Android开发中,Notification是应用与用户交互的重要方式,它可以在状态栏中显示消息,即使应用在后台运行也能提醒用户。本示例主要探讨如何利用Notification API创建各种效果的提示,包括系统默认样式以及自定义...

    Notification用法

    这个项目可能包含了一个主活动(MainActivity),用于触发通知,一个通知服务(NotificationService)用于生成和发送通知,以及可能的布局XML文件(如custom_notification.xml)用于自定义通知的视图。通过学习和...

    Android-json2notification-一个多功能方便好用的notification通知栏通知开源库

    此外,`json2notification`库可能还包含了自定义扩展的功能,如自定义视图布局、使用BigPicture样式或者利用通知渠道(Notification Channels)来更好地控制不同类型的Notification,特别是在Android 8.0及以上版本...

    Notification实例

    - **扩展布局(Big View)**:`NotificationCompat.Builder`允许设置`setStyle()`,如`BigTextStyle()`或`InboxStyle()`,在用户展开通知时显示更多的信息。 - **声音、震动、LED灯**:可以使用`setSound()`、`...

    多种notification的demo(带注释)

    - `res`目录包含应用的资源,如图片(可能包括`ic_launcher-web.png`)、布局文件等。 - `gen`目录存储由ADT自动生成的Java源代码,通常是R类,包含了所有资源的ID引用。 综上所述,这个demo不仅展示了如何创建基础...

    自定义Notification样例工程

    4. **自定义布局(Custom Layout)**:如果以上仍无法满足需求,可以使用`RemoteViews`来创建完全自定义的通知布局。通过`Builder`的`setContent`方法,传入`RemoteViews`对象,可以实现高度定制的通知界面。 接...

    Android应用源码之notification.zip

    - 自定义视图允许开发者提供更丰富的布局,如大图通知、媒体控制器等。 - 使用`NotificationCompat.Builder`的`setStyle()`方法设置自定义样式。 8. **Notification和后台服务** - Notification常用于后台服务与...

    带进度条,以及动态状态图标的Notification

    - 当系统默认的`Notification`样式无法满足需求时,可以使用`RemoteViews`来构建自定义的布局。 - 创建`RemoteViews`对象,加载XML布局,然后使用`setViewLayout()`或`setImageViewResource()`等方法设置内容。 -...

    Notification 可以起到通知、提醒的作用

    Notification 在 Android 系统中扮演着至关重要的角色,它是一种用户界面组件,允许应用程序在后台运行时向用户发送重要信息,即便用户并未直接与应用交互。Notification 的主要目的是提供一种非侵入性的通信方式,...

Global site tag (gtag.js) - Google Analytics