Android自定義邊框背景顏色的Toast

冰糖葫蘆三劍客發表於2017-11-24




                     


直接上程式碼:

1.主函式:


   View toastRoot = getActivity().getLayoutInflater().inflate(R.layout.my_toast, null);
                    Toast toast = new Toast(getActivity());
                    toast.setView(toastRoot);
                    TextView tv = (TextView) toastRoot.findViewById(R.id.TextViewInfo);
                    tv.setText("說明,這是一個自定義邊框和底角的提示框");
                    toast.show();

預設的Toast無法實現我們所需要的效果,那麼我們只能自定義佈局檔案,另外Toast的背景形狀是圓角的,所以我們需要自定義Shape檔案。


2.在drawable-hdpi下新建一個my_border.xml檔案


<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <solid android:color="#ff0000ff"/>
          <stroke android:width="1dp" android:color="#FFFFFFFF" />
          <padding android:left="7dp" android:top="7dp" android:right="7dp" android:bottom="7dp" />
          <corners android:radius="4dp" />
</shape>


3.新建一個佈局檔案my_toast.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:layout_width="wrap_content"
        android:background="@drawable/my_border"
        android:id="@+id/TextViewInfo"
        android:text="這是一個自定義背景顏色的提示框"
        android:layout_gravity="center_vertical"
        android:textColor="#ff00ff00"
        android:layout_height="wrap_content" />

</LinearLayout>



相關文章