- 浏览: 34563 次
- 性别:
- 来自: 北京
最新评论
-
zhengyao:
mark.
eclipse 反编译
文章列表
1 eclipse 工程导入 AS 找不到 sdk.dir 或者 ANDROID_HOME 路径 local.properties
解决: 缺少 settings.gradle,创建该文件,
2 Android Studio: Plugin with id 'android-library' not found 和 找不到”xx.txt"
解决:在build.gradle 配置一下参数,然后查看是否有没有加载jar,然后加入,buiding工程,OK
buildscript { repositories { mavenCentr ...
mac 快捷键 不断完善
1代码高亮向上查找 Cmd + Shift + G
2 代码高亮向下查找 Cmd + G
3上下移动代码 Alt + Shift + Up/Down
4 自动导入jar 不需要每次都 alt+enter
资料:
http://jingyan.baidu.com/article/f71d603783fc0f1ab641d1c5.html
mac android studio 1.2
在大环境正 没有遇到什么问题,但是在 AS中创建工程,怎么引入eclipse libarary工程 各种问题 整理一天,终于搞定,记录一下,都是在网上找的资料
1 ,更新到jdk1.7 需要设置.bash_profile 可以百度
2 ,将lib 工程导入到 AS中 http://blog.csdn.net/hyr83960944/article/details/38317579
http://www.open-open.com/lib/view/open1419597450031.html ...
最近 一直 在修改 UI 界面 对这些 参数 很是头疼,记录 一下,以防止自己忘记
单位一览表
px:单位尺寸里的像素点
dp:一个基于density的抽象单位,如果一个160dpi的屏幕,1dp=1px
dip:等同于dp
sp:同dp相似,但还会根据用户的字体大小偏好来缩放,常用来作为字体大小的单位。
像素px与屏幕密度density
既然知道了像素是单位里面的像素点,我们就可以通过像素来求得屏幕密度,下面的公式即为像素与像素密度的换算关系:
pixs =dips * (densityDpi/160)
dips=(pixs*160)/de ...
PackageItemInfo类 说明: AndroidManifest.xml文件中所有节点的基类,提供了这些节点的基本信息: label、icon、meta-data。它并不直接使用,而是由子类继承然后调用相应方法。 常用字段: public ...
//查询Android系统的所有具备ACTION_MAIN和CATEGORY_LAUNCHER的Intent的应用程序
PackageManager packageManager = getPackageManager();
final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
// 本地的所有应用
final List<ResolveInfo> localApp = packageManag ...
android 安装apk包 卸载 包
- 博客分类:
- android
android apk 安装
String str = "/CanavaCancel.apk";
String fileName = Environment.getExternalStorageDirectory() + str;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");
startAc ...
package com.spring.sky.download;
import java.io.File;
import android.content.Context;
import android.os.Environment;
import android.util.Log;
/**
* 文件工具类
* @author spring sky
* Email:vipa1888@163.com
* QQ:840950105
* name:石明政
*
*/
public class FileUtil {
/**
* 检验SDcard状 ...
eclipse 反编译
- 博客分类:
- eclipse应用
安装jad
1):下载插件:
下载jadclipse_3.1.0.jar版本,该版本支持eclipse3.1M6~3.2M2
下载jadclipse_3.2.0.jar版本,该版本支持eclipse3.2M3和eclipse3.2M4.
下载jadclipse_3.2.4.jar版本,该版本支持eclipse3.2M5~3.3M5
下载jadclipse_3.3.0.jar版本,该版本支持eclipse3.3M6以上版本
(选择和你eclipse版本相符合的插件很重要,否则一直出现:Could not open the editor:
The editor class could not be ...
layout文件布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation=&q ...
在网上看啦一些,自己有修改了一下,主要方法 如下
下载类
package com.example.anrdroidlancher.util;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import andr ...
public String excel() {
try {
String filename = "RKA_"
+ DateFormatUtil.getFormatDate("yyyyMMddHHmmss");
HttpServletResponse response = getResponse();
OutputStream os = response.getOutputStream();// 取得输出流
response.reset();
response.setContentType(&quo ...
android的单个图片 上传服务器
- 博客分类:
- android
服务器servlet代码
publicvoid doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String temp=request.getSession().getServletContext().getRealPath("/")+"temp"; //临时目录
System.out.print ...
获取CLASSPATH下文件的绝对路径
当使用相对路径写入文件时候,就需要用到绝对路径。下面是个例子:
package com.lavasoft;
import java.io.File;
/**
* CLASSPATH文件的绝对路径获取测试
*
* @author leizhimin 2010-1-18 9:33:02
*/
public class Test {
//classpath的文件路径
private static String cp = "/com/lavasoft/cfg/syscfg.properties&quo ...
问题:
在oracle用户登录的状态下,({oracle_home}/bin)启动netca
无法启动oracle 监听创建界面
解决:
在 oracle用户下输入命令:xhost +
重新在oracle用户下启动 :netca
和进行添加监听