如何找到Toast小部件的布局参数?

时间:2010-09-01 15:25:23

标签: android layout parameters toast

我非常喜欢toast小部件的布局,这意味着圆角,透明度,浅灰色边框。有没有办法看到像toast

这样的android标准小部件的布局参数

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

1 个答案:

答案 0 :(得分:10)

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

e.g。对于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>

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