我使用RomainNurik的库向用户显示 Undo-Toast(如在 Gmail 应用程序中)
在 KitKat 之前,吐司选项是矩形的,而在 KitKat 中,吐司消息具有圆角。是否有获取吐司半径的 get() 方法?这样如果我使用图书馆,我可以 getRadius() ,并据此调整我的吐司?
注意:否则我将不得不指定两个不同的值,一个在 KitKat 之前,一个在 KitKat 之前。
我使用RomainNurik的库向用户显示 Undo-Toast(如在 Gmail 应用程序中)
在 KitKat 之前,吐司选项是矩形的,而在 KitKat 中,吐司消息具有圆角。是否有获取吐司半径的 get() 方法?这样如果我使用图书馆,我可以 getRadius() ,并据此调整我的吐司?
注意:否则我将不得不指定两个不同的值,一个在 KitKat 之前,一个在 KitKat 之前。
也许您想要的是布局文件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