自定義Toast

/**
 * 顯示自定義的Toast
 *
 * @param content
 */
public void showToast(String content) {
   //加載自定義Toast佈局
   View toastView = LayoutInflater.from(activity).inflate(R.layout.toast_like, null);
   
   //獲取屏幕寬和高的像素大小
   DisplayMetrics dm = new DisplayMetrics();
   activity.getWindowManager().getDefaultDisplay().getMetrics(dm);
   int mScreenWidth = dm.widthPixels;
   
   LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(mScreenWidth,
      LinearLayout.LayoutParams.MATCH_PARENT);
   TextView tv = (TextView) toastView.findViewById(R.id.tv_content);
   //設置Toast寬高
   tv.setLayoutParams(params);
   tv.setText(content);
   
   //定義一個Toast
   Toast toast = new Toast(activity);
   //設置Toast的位置
   toast.setGravity(Gravity.TOP, 0, Util.dip2px(activity, 44));
   //設置透明度
   tv.setAlpha(0.8f);
   toast.setDuration(Toast.LENGTH_SHORT);
   
   //將toastView設置到建立好的Toast中
   toast.setView(toastView);
   
   //顯示toast
   toast.show();
}

注意:Util是一個工具類,裏邊封裝了對不一樣手機的分辨率的處理,顧名思義,dip2px是將dp轉換爲對應手機的px,下面是dp和px相互轉換的方法java

/**
 * 根據手機的分辨率從 dp 的單位 轉成爲 px(像素)
 */
public static int dip2px(Context context, float dpValue) {
    final float scale = context.getResources().getDisplayMetrics().density;
    return (int) (dpValue * scale + 0.5f);
}

/**
 * 根據手機的分辨率從 px(像素) 的單位 轉成爲 dp
 */
public static int px2dip(Context context, float pxValue) {
    final float scale = context.getResources().getDisplayMetrics().density;
    return (int) (pxValue / scale + 0.5f);
}
相關文章
相關標籤/搜索