0

android9patch画像を使用して通知を表示します。

ここに画像の説明を入力してください

白と透明の背景を使用しようとしましたが、まだ不透明です。はい、ファイル名はで終わります.9.png

通知のレイアウトは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_gravity="center_horizontal">

        <TextView
                android:id="@android:id/message"
                android:layout_width="300dip"
                android:layout_height="wrap_content"
                android:layout_margin="@dimen/common_whitespace"
                android:textColor="@color/screen_game_dialog_text_color"
                android:textSize="14dip"
                android:gravity="center"
                android:background="@drawable/notification_popup_default"
                android:contentDescription="@null"/>

</LinearLayout>

これが9patch画像です(これは私のものではないので、一種の透かしを追加しました):

ここに画像の説明を入力してください

私は何が間違っているのですか?

4

1 に答える 1

0

コーナーの背景は白で、アルファ値は0ではありません。背景は完全に透明である必要があります。

于 2013-03-11T09:08:47.840 に答える