http://www.cnblogs.com/snake-hand/archive/2012/02/17/2454392.html
http://liuzhichao.com/p/832.html
if (System.currentTimeMillis() - mLastClickTime < 300) { // in order to avoid user click bottom too quickly return; } if (!button.isEnabled()) return; mLastClickTime = System.currentTimeMillis(); mLastButtonId = button.getId();
android:ellipsize="marquee" android:marqueeRepeatLimit="marquee_forever" android:singleLine="true"
这个跑马灯需要在获取焦点的时候才能有效果.
不获取焦点也有跑马灯效果.
自定义一个TextView,它继承TextView,并且重写isFocuse()方法,让它永远返回true.
今天看到一个,在使用了SlidingDrawer ,open状态下,仍然能触发抽屉覆盖的View点击事件.
解决办法.在content 添加 android:clickable="true" 属性. 猜测应该是因为 默认的content没有任何事件,就传递到下面.
在OnCreate()方法中获取控件的高度和宽度,需要使用的一个观察者(否则得到的height, paddingTop等数据为0,因onCreate()执行时,控件还未加载完成)
ViewTreeObserver vto = imageview.getViewTreeObserver(); vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { // 此句若不执行,不影响控件宽高的获取结果,但是当前的onGlobalLayout()会执行多次,执行此句,当前方法只会执行一次 imageview.getViewTreeObserver().removeGlobalOnLayoutListener( this); Log.i("TAG", imageview.getMeasuredHeight() + " -- - " + imageview.getHeight()); } });
Intent intent = new Intent(TransitionActivity.this, DeviceActivity.class); startActivity(intent); finish(); //页面切换 -- 淡入淡出效果 overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
TextView title = new TextView(context); TextPaint paint = title.getPaint(); paint.setFakeBoldText(true);
之前一直用的是MotoDev开发,没有遇到类似的问题.有次帮同事搭建新环境,安装了Eclipse,创建新项目时,就会出现这个问题. 提示的是我缺少android-compatibility 文件.
但其实我是已经下载过的.
点击文档查看一下.文档这一段,在想想自己的下载目录,知道了吧.
When done, all files (including source code, samples, and the .jar
files) are saved into the<sdk>/extras/android/support/
directory. This directory contains each of the different support libraries, such as the library for API level 4 and up and the library for API level 13 and up, each named with the respective version (such as v4/
).
我们只需要把 ~/android-compatibility 下的文件复制到 ~/extras/android/support/ 下,再Check 就好了.
WindowManager m = getWindowManager(); Display d = m.getDefaultDisplay(); //为获取屏幕宽、高 LayoutParams p = getWindow().getAttributes(); //获取对话框当前的参数值 Point outSize = new Point(); d.getSize(outSize); Log.i(TAG, outSize.x + "-" + outSize.y); p.width = (int) (outSize.x * 0.6); p.alpha = 1.0f; p.dimAmount = 0.7f; p.gravity = Gravity.CENTER; getWindow().setAttributes(p);
URL u = new URL(url);
HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
(new File(FileUtils.getCachePath())).mkdirs();
FileOutputStream f = new FileOutputStream(new File(file));
InputStream in = c.getInputStream();
之前一直使用的这套代码做下载部分的实现.但是今天主管告诉我应用在4.0上出现问题. 查看代码后发现是图片下载失败的问题.
第一种:
[java]
WebSettings settings = webView.getSettings();
settings.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);
LayoutAlgorithm是一个枚举用来控制页面的布局,有三个类型:
1.NARROW_COLUMNS:可能的话使所有列的宽度不超过屏幕宽度
2.NORMAL:正常显示不做任何渲染
3.SINGLE_COLUMN:把所有内容放大webview等宽的一列中
用SINGLE_COLUMN类型可以设置页面居中显示,页面可以放大缩小,但这种方法不怎么好,有时候会让你的页面布局走样而且我测了一下,只能显示中间那一块,超出屏幕的部分都不能显示。
第二种方法:
[java]
//设置加载进来的页面自适应手机屏幕
settings.setUseWideViewPort(true);
settings.setLoadWithOverviewMode(true);
第一个方法设置webview推荐使用的窗口,设置为true。第二个方法是设置webview加载的页面的模式,也设置为true。
这方法可以让你的页面适应手机屏幕的分辨率,完整的显示在屏幕上,可以放大缩小。
推荐使用第二张方法