- 浏览: 78112 次
- 性别:
- 来自: 成都
最新评论
-
A741841403:
调整了书签位置后保存,为什么打开还是原先的位置呢?
利用福昕阅读器为PDF文档添加书签和子书签 -
Evilover3:
我现在遇到一个问题,就是我在ScrollView中放入一个Li ...
scrollview 中嵌套 edittext -
guanlijun:
...
jqGrid相关资料网页链接 -
sacredlove:
非常感谢,也帮我解决第二个无法滚动的问题
scrollview 中嵌套 edittext -
study396212327:
好东西啊,感谢lz
scrollview 中嵌套 edittext
文章列表
[置顶] 重要官方网址【不断更新中】
- 博客分类:
- 资料资源
Eclipse
http://www.eclipse.org/downloads/
JDK
http://www.oracle.com/technetwork/java/javase/downloads/index.html
Android 源码下载
1.5 : http://rgruet.free.fr/public/android-1.5-cupcake-src.zip
1.6_R2 : http://devfrustrated.com/devBlog/wp-content/uploads/2010/07/sources_1.6.zip
1、jackson 泛型
ObjectMapper objectMapper = null;
String json = “{\"list\":[{\"picUrl\":\"aa\",\"picDescr\":\"uu\"},{\"picUrl\":\"aa\",\"picDescr\":\"uu\"},{\"picUrl\":\"aa\",\"picDescr\ ...
hdpi,mdpi,ldpi区别
- 博客分类:
- android
from http://www.cnblogs.com/andy319/archive/2011/06/09/2075978.html
from http://www.miui.com/thread-413844-1-1.html
1.drawable-(hdpi,mdpi,ldpi)的区别
dpi是“dot per inch”的缩写,每英寸像素数。
① 右键入口类(含有Main方法的)
Run Configurations==>双击(Java Application)==>New==>
② 在标签Main里选好相应的ProectNme和要运行的ClassName
③选标签ClassPath中的Bootstrap Entries,再从右边点Advance==>Add Library==>JRE System Library,完成,然后将JRE System Library 点中 Up按钮,OK了
android:layout_gravity="center_vertical"//设置控件显示的位置:默认top,这里居中显示,还有bottom
android:hint="请输入数字!"//设置显示在控件上的提示信息,控件上无值时显示
android:numeric="integer"//设置只能输入整数,如果是小数则是:decimal
android:singleLine="true"//设置单行输入,一旦设置为true,则文字不会自动换行。
android:gray="top"/ ...
MainActivity 作为工具类activity,可使用在任何项目中
已拥有功能:
1、默认自动居中,全屏模式,等比缩放沾满屏幕的一边。
2、拖动进行浏览。超过部分自动回弹至手机边缘。
3、手势多触点缩放。
重要说明:
开启这个会话的时候,需要传输一个 “IMG” 的图片资源ID。
工具类中,通过这一段语句获取需要浏览的图片:
bitmap = BitmapFactory.decodeResource(getResources(), this.getIntent()
.getExtras().getInt ...
引用自:http://blog.sina.com.cn/s/blog_4ee13c2c0100ukdm.html (谢谢作者)
打开福昕阅读器,选择要操作的pdf文件,1. 打开您想要书签链接的页面,并调整视图设置。选择新书签放置在那个书签目录下,如果尚未选定书 ...
scrollview 中加入多个控件如 edittext 后会出现诸多问题。
Q1、edittext 失灵。
A1:这应该是焦点在作怪。在scrollview 上设置 android:focusable="false" 。(这是个通用办法)
Q2、edittext无法滚动。
A2:如果长按后,通过它的光标是可以实现滚动,可是是个很傻缺的办法。要让它像平时一样很普通的滚动,那么最直接的办法就是重写scrollview 中的 onInterceptTouchEvent(MotionEvent ev) (这也是个通用方法)
完整代码请参考附件中的demo
...
Android SDK 源码下载
- 博客分类:
- android
转自:http://craining.blog.163.com/blog/static/85718132201010345350597/
做Android开发不能查看它的源码;
如果想看它的源代码的话可以这样做:
下面地址可以下载到它的源代码
1.5:
http://rgruet.free.fr/public/android-1.5-cupcake-src.zip
1.6_R2:
http://devfrustrated.com/devBlog/wp-content/uploads/2010/07/sources_1.6.zip 2.1_R1:
http ...
1 File->New->Android Project
2 Select "create project from existing source"
3 Import ApiDemos from source
4 Select Android version
本文引自:http://www.cnblogs.com/enricozhang/archive/2011/09/29/2195601.html
1.创建数据库表的时候选择存图片的字段类型为blob
StringBuffer createTableOfHistory = new StringBuffer();
createTableOfHistory.append("CREATE TABLE "+某表名);
createTableOfHistory.append(" ( _id INTEGER PRIMARY KEY AUTOINCREMENT , ...
Activity 内容:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.Date;
import android.database.Cursor;
import android.gra ...
本文引自:Android 解析imei http://www.apkbus.com/android-15942-1-1.html
java 代码 :
import android.app.Activity;
import android.os.Bundle;
import android.telephony.CellLocation;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
public class TelManag ...
Visual Swing for Eclipse项目
代码位置: http://code.google.com/p/visualswing4eclipse/ 页面右边有个链接,可下载最新版本
安装方式
方法一:下载下来后解压缩,将plugins中的jar文件复制到Eclipse安装目录下的plugins文件夹后就可以了。
方法二:MyEclipse\MyEclipse 8.5\dropins 路径下创建visual-swing.link,下载下来后解压缩,将plugins路径记录其中,例:path=E:\\workspace\\MyEclipse\\myPlugin\\ ...
本文转载自:http://blog.csdn.net/orietech/article/details/6637872
目前市场上主流的android屏幕大小和精度,供大家参考。
多分辨率支持 在设计之初,Android系统就被设计为一个可以在多种不同分辨率的设备上运行的操作系统。对于应用程序来说,系统平台向它们提供的是一个稳定的,跨平台的运行环境,而关于如何将程序以正确的方式显示到它所运行的平台上所需要的大部分技术细节,都由系统本身进行了处理,无需程序的干预。当然,系统本身也为程序提供了一系列API,所以在目标平台的分辨率是可以完全确定的情况下,程序也可以精确的控制自身在目标 ...