android 自定义toast width height 背景图片

Android 自定义toast 宽高大小 背景图片


 RelativeLayout layout = (RelativeLayout) getLayoutInflater().inflate(R.layout.layout_custom_toast,null);
        ((TextView) layout.findViewById(R.id.tvCheckoutWay)).setText("11111");
        ((TextView) layout.findViewById(R.id.tvPercent)).setText("22222");
        Toast toast = new Toast(getApplicationContext());
        toast.setDuration(Toast.LENGTH_SHORT);
        toast.setGravity(Gravity.CENTER_VERTICAL | Gravity.BOTTOM, 0,(int)getResources().getDimension(R.dimen.spacing_4));
        toast.setView(layout);//setting the view of custom toast layout
        toast.show();

layout.xml


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

    <LinearLayout
        style="@style/style_base"
        android:layout_width="200dp"
        android:layout_height="48dp"
        android:background="@drawable/bg_toast_data"
        android:gravity="center"
       >

        <TextView
            android:id="@+id/tvCheckoutWay"
           android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="center"
            android:text="AAAA" />

        <TextView
            android:id="@+id/tvPercent"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="{100%}"
            android:textColor="@color/green_deep"
            android:textSize="@dimen/text_size_menu" />
    </LinearLayout>
</RelativeLayout>

需要注意的是最外一层layout不要放背景图片,不然怎么都改变不了大小和宽高,要改只能在中间这层再改



图片

技术分享

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。