摘要: // 屏幕方面切换时获得方向if (this.getResources().getConfiguration().orientation== Configuration.ORIENTATION_LANDSCAPE) {setTitle("landscape");}if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {setTitle("portrait");}// 获得屏幕大小1WindowManager manager 阅读全文
posted @ 2013-01-24 17:01 bavariama 阅读(221) 评论(0) 推荐(0) 编辑
摘要: // 屏幕方面切换时获得方向if (this.getResources().getConfiguration().orientation== Configuration.ORIENTATION_LANDSCAPE) {setTitle("landscape");}if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {setTitle("portrait");}// 获得屏幕大小1WindowManager manager 阅读全文
posted @ 2013-01-24 16:59 bavariama 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1 ImageView设置android:adjustViewBounds="true"此属性2 ScrollView设置android:fadingEdge="none"或者代码中设置ScrollView.setHorizontalFadingEdgeEnabled(false);3android:fillViewport="true"三种方法我还没有解决问题,悲剧。继续找原因,擦。终于解决了4 ImageView中设置android:scaleType="centerCrop"解决问题。 阅读全文
posted @ 2013-01-24 10:59 bavariama 阅读(1862) 评论(0) 推荐(0) 编辑
摘要: 1:在onDown中设置this.flipper.setClickable(true); 然后在onFling方法中this.flipper.setClickable(false);2:public boolean onTouchEvent(MotionEvent event) { // 执行touch 事件 super.onTouchEvent(event); return this.detector.onTouchEvent(event);}//这个方法会先执行,当返回为true时,才执行onTouchEvent 方法public boolean dispatchTouchEvent... 阅读全文
posted @ 2013-01-24 10:40 bavariama 阅读(2598) 评论(0) 推荐(0) 编辑