摘要: 1. 在style.css中添加如下代码#gotop{ width:38px; height:36px; position:fixed; bottom:25px; right:10px; top:auto; display:block; cursor:pointer; background: url(images/gotop.gif) no-repeat}*html #gotop{ position:absolute; bottom:auto; top:expression(eval(document.documentEleme... 阅读全文
posted @ 2014-03-20 21:31 BetterMan- 阅读(919) 评论(0) 推荐(0)
摘要: public class CustomToast { public static void customToastShow(Context context,String content,int duration) { Toast toast=new Toast(context);//实例化一个Toast toast.setDuration(duration);//设置Toast持续时间 toast.setGravity(Gravity.BOTTOM, 0, 100);//设置Toast显示位置 LinearLayout... 阅读全文
posted @ 2014-03-20 11:16 BetterMan- 阅读(331) 评论(0) 推荐(0)