資源簡介
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.xm
?????文件??????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.xm
?????文件????????263??2014-03-10?14:11??TestToast\res\menu\main.xm
?????文件????????220??2014-03-10?14:11??TestToast\res\values\dimens.xm
?????文件????????226??2014-03-10?14:11??TestToast\res\values\strings.xm
?????文件????????697??2014-03-10?14:11??TestToast\res\values\st
?????文件????????203??2014-03-10?14:11??TestToast\res\values-sw600dp\dimens.xm
?????文件????????277??2014-03-10?14:11??TestToast\res\values-sw720dp-land\dimens.xm
?????文件????????334??2014-03-10?14:11??TestToast\res\values-v11\st
?????文件????????391??2014-03-10?14:11??TestToast\res\values-v14\st
?????文件???????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個文件信息
評論
共有 條評論