• 大小: 0.55M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: Java
  • 标签: java  

资源简介


android自定义时长Toast,Toast 显示时间可以自己设定

资源截图

代码片段和文件信息

package com.open.toast;

import android.content.Context;
import android.graphics.Color;
import android.graphics.PixelFormat;
import android.os.Handler;
import android.view.Gravity;
import android.view.View;
import android.view.WindowManager;
import android.widget.LinearLayout;
import android.widget.TextView;

/**
 * 自定义时长的Toast
 * @author DexYang
 *
 */
public class CToast {

    public static CToast makeText(Context context CharSequence text int duration) 
    {
     CToast result = new CToast(context);
    
     LinearLayout mLayout=new LinearLayout(context);
        TextView tv = new TextView(context);
        tv.setText(text);
        tv.setTextColor(Color.WHITE);
        tv.setGravity(Gravity.CENTER);
        mLayout.setBackgroundResource(R.drawable.widget_toast_bg);
        
        int w=context.getResources().getDisplayMetrics().widthPixels / 2;
        int h=context.getResources().getDisplayMetrics().widthPixels / 10;
        mLayout.addView

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        475  2014-03-10 14:11  TestToast\.classpath

     文件        845  2014-03-10 14:11  TestToast\.project

     文件        177  2014-03-10 14:11  TestToast\.settings\org.eclipse.jdt.core.prefs

     文件        870  2014-03-10 14:11  TestToast\AndroidManifest.xml

     文件      51394  2014-03-10 14:11  TestToast\ic_launcher-web.png

     文件     556198  2014-03-10 14:11  TestToast\libs\android-support-v4.jar

     文件        781  2014-03-10 14:11  TestToast\proguard-project.txt

     文件        562  2014-03-10 18:49  TestToast\project.properties

     文件       7658  2014-03-10 14:11  TestToast\res\drawable-hdpi\ic_launcher.png

     文件         94  2014-03-10 18:43  TestToast\res\drawable-hdpi\widget_toast_bg.png

     文件       3777  2014-03-10 14:11  TestToast\res\drawable-mdpi\ic_launcher.png

     文件      12516  2014-03-10 14:11  TestToast\res\drawable-xhdpi\ic_launcher.png

     文件      24777  2014-03-10 14:11  TestToast\res\drawable-xxhdpi\ic_launcher.png

     文件       1154  2014-03-10 14:45  TestToast\res\layout\activity_main.xml

     文件        263  2014-03-10 14:11  TestToast\res\menu\main.xml

     文件        220  2014-03-10 14:11  TestToast\res\values\dimens.xml

     文件        226  2014-03-10 14:11  TestToast\res\values\strings.xml

     文件        697  2014-03-10 14:11  TestToast\res\values\styles.xml

     文件        203  2014-03-10 14:11  TestToast\res\values-sw600dp\dimens.xml

     文件        277  2014-03-10 14:11  TestToast\res\values-sw720dp-land\dimens.xml

     文件        334  2014-03-10 14:11  TestToast\res\values-v11\styles.xml

     文件        391  2014-03-10 14:11  TestToast\res\values-v14\styles.xml

     文件       6752  2014-03-10 18:51  TestToast\src\com\open\toast\CToast.java

     文件       1563  2014-03-10 18:38  TestToast\src\com\open\toast\MainActivity.java

     目录          0  2014-03-10 14:11  TestToast\src\com\open\toast

     目录          0  2014-03-10 14:11  TestToast\src\com\open

     目录          0  2014-03-10 18:43  TestToast\res\drawable-hdpi

     目录          0  2014-03-10 14:11  TestToast\res\drawable-ldpi

     目录          0  2014-03-10 14:11  TestToast\res\drawable-mdpi

     目录          0  2014-03-10 14:11  TestToast\res\drawable-xhdpi

............此处省略18个文件信息

评论

共有 条评论