2

我使用RomainNurik的库向用户显示 Undo-Toast(如在 Gmail 应用程序中)

在 KitKat 之前,吐司选项是矩形的,而在 KitKat 中,吐司消息具有圆角。是否有获取吐司半径的 get() 方法?这样如果我使用图书馆,我可以 getRadius() ,并据此调整我的吐司?

注意:否则我将不得不指定两个不同的值,一个在 KitKat 之前,一个在 KitKat 之前。

在此处输入图像描述

4

1 回答 1

2

也许您想要的是布局文件android:shadowRadius中的 Toast 。2.75

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="?android:attr/toastFrameBackground">

    <TextView
        android:id="@android:id/message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_gravity="center_horizontal"
        android:textAppearance="@style/TextAppearance.Toast"
        android:textColor="@color/bright_foreground_dark"
        android:shadowColor="#BB000000"
        android:shadowRadius="2.75"
        />

</LinearLayout>

我在Android SDK\sdk\platforms\android-19\data\res\layout命名中找到它transient_notification.xml

于 2014-04-13T09:30:14.620 回答