5

我非常喜欢小部件的布局toast,即圆角、透明度、浅灰色边框。有什么办法可以看到像这样的android标准小部件的布局参数toast

我想TextView用相同的布局参数定义一个。

4

1 回答 1

10

可以在 {SDKBASEDIR}/platforms/{RELEASE}/res/layout/transient_notification.xml 下找到布局

例如对于 2.1:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="@drawable/toast_frame">
<TextView
    android:id="@android:id/message"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textAppearance="@style/TextAppearance.Small"
    android:textColor="@color/bright_foreground_dark"
    android:shadowColor="#BB000000"
    android:shadowRadius="2.75"
    />

</LinearLayout>

可绘制的 toast_frame.9.png 可以在 {SDKBASEDIR}/platforms/{RELEASE}/res/drawable{-RESOLUTION} 下找到

于 2010-09-01T15:57:33.643 回答