HTML5先行者高级交流群

欢迎加入学习讨论
专注前端,专注网页设计制作及网站开发项目 - (低价承接网站开发项目) QQ:370158739加入收藏RSS
-
2013-12-28 20:12:24
java(jsp)整合discuz同步登录功能详解_JSP编程_脚本之家
- 最近做了一个资源库系统的项目,老师说可以搭建开源论坛替代自己开发社交模块,正好在开源中国上看到了一个利用discuz的UCenter功能实现同步登录的开源项目(https://code.google.com/p/discuz-ucenter-api-for-java/),不禁
-
2013-12-28 20:09:24
Android中ImageView无法居中的问题解决方法_Android_脚本之家
- 代码如下:[java]复制代码 代码如下:<LinearLayout android:layout_width="wrap_content" android:layout_height="fill_parent" android:orientation="vertical" android:layout_weig
-
2013-12-28 20:09:24
android 简单图片动画播放的实例代码_Android_脚本之家
- xml中:复制代码 代码如下: <ImageView android:id="@+id/touchview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layou
-
2013-12-28 20:09:18
android Bitmap圆角与倒影的具体实现代码_Android_脚本之家
- [html]复制代码 代码如下:/** * 画一个圆角图 * * @param bitmap * @param roundPx * @return */ public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, float roundPx)
-
2013-12-28 20:09:18
仿网易新闻客户端头条ViewPager嵌套实例_Android_脚本之家
- 要点: 1、重写组件public boolean onInterceptTouchEvent(MotionEvent event)方法 2、正确使用requestDisallowInterceptTouchEvent(boolean flag)方法 关于以上两个方法,请大家多看看相关介绍,这里就不在叙述了^_^
接
-
2013-12-28 20:09:16
android通过bitmap生成新图片关键性代码_Android_脚本之家
- 1、关键性代码 复制代码 代码如下: //R.drawable.test为当前工程里的一张图片 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.test); FileOutputStream fos = null; try { File file = n
-
2013-12-28 20:09:02
Android中实现地址栏输入网址能浏览该地址网页源码并操作访问网络_Android_脚本之家
- 首先实现简单布局: 复制代码 代码如下: <EditText android:id="@+id/et_url" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_al
-
2013-12-28 20:08:59
Android selector背景选择器的使用详解_Android_脚本之家
- 在开发应用中,很多情况下要设计listview或button控件的背景,下面总结一下android的selector的用法:1.在drawable中配置Android的selector。将如下的XML文件保存成你自己命名的.xml文件(比如item_bg.xml),并将该文件放置在dr
-
2013-12-28 20:08:57
基于android背景选择器selector的用法汇总_Android_脚本之家
- 一.创建xml文件,位置:drawable/xxx.xml,同目录下记得要放相关图片复制代码 代码如下:<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"> <!-- 没有焦点
-
2013-12-28 20:08:52
Android TextView设置背景色与边框的方法详解_Android_脚本之家
- 1.在drawable文件夹下面创建setbar_bg.xml复制代码 代码如下:<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" > <!-- 背景色 --> <solid android:
-
2013-12-28 20:08:47
Android dip,px,pt,sp 的区别详解_Android_脚本之家
- dip: device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这个,不依赖像素。
px: pixels(像素). 不同设备显示效果相同,一般我们HVGA代
-
2013-12-28 20:08:44
Android 实现永久保存数据的方法详解_Android_脚本之家
- 背景:在Android中按照数据保存的方式,可以分为如下几种Content Provider (用的SQLite实现),SQLite,SharedPreferences(用的XML实现),文件,网络等方式。
今天在项目中,需要做一个永久保存的数据,保存到本地。于是测试了这几种保存
-
2013-12-28 20:08:43
Android实现左右滑动效果的方法详解_Android_脚本之家
- 本示例演示在Android中实现图片左右滑动效果。
关于滑动效果,在Android中用得比较多,本示例实现的滑动效果是使用ViewFlipper来实现的,当然也可以使用其它的View来实现。接下来就让我们开始实现这种效果。为了方便大家