Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android 自定義toast width height 背景圖片

android 自定義toast width height 背景圖片

編輯:關於Android編程

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





    

        

        
            android:gravity="center"
            android:text="{100%}"
            android:textColor="@color/green_deep"
            android:textSize="@dimen/text_size_menu" />
    

需要注意的是最外一層layout不要放背景圖片,不然怎麼都改變不了大小和寬高,要改只能在中間這層再改



圖片


  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved