5

ステータスバーの通知にカスタムXMLを使用したいと考えています。

出発点として使用するために、デフォルトの通知のxmlコードを見つける場所はありますか?

ありがとうございました。

4

2 に答える 2

12

それを試してみてください:-)

https://github.com/android/platform_frameworks_base/blob/master/core/res/res/layout/status_bar_latest_event_content.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012 The Android Open Source Project
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
          http://www.apache.org/licenses/LICENSE-2.0
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<!-- Nobody should be using this file directly. If you do, you will get a
     purple background. Have fun with that. -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/status_bar_latest_event_content"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#FFFF00FF"

    <include layout="@layout/notification_template_material_base"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />
</FrameLayout>
于 2011-06-14T17:45:28.330 に答える
1

Android開発者サイトのカスタム拡張ビューの作成を参照してください。

私は引用します:

拡張ビューのXMLレイアウトを作成します。たとえば、custom_notification_layout.xmlというレイアウトファイルを作成し、次のように作成します。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:padding="3dp"
              >
    <ImageView android:id="@+id/image"
              android:layout_width="wrap_content"
              android:layout_height="fill_parent"
              android:layout_marginRight="10dp"
              />
    <TextView android:id="@+id/text"
              android:layout_width="wrap_content"
              android:layout_height="fill_parent"
              android:textColor="#000"
              /> </LinearLayout>

このレイアウトは拡張ビューに使用されますが、ImageViewとTextViewのコンテンツはアプリケーションで定義する必要があります。RemoteViewsは、このコンテンツを定義できる便利なメソッドをいくつか提供しています...

于 2011-02-20T21:12:07.543 に答える