- 浏览: 696470 次
- 性别:
- 来自: 苏州
-
最新评论
-
usedlie:
if (flag) { matrix.set(matrix ...
android view的缩放平移简单实现 -
jin290:
简单 快捷 非常棒 可以直接用
android 应用实现微信好友或朋友圈分享 -
貌似掉线:
0是朋友1是朋友圈
android 应用实现微信好友或朋友圈分享 -
zhangzhanlei:
[color=red][/color]
android 应用实现微信好友或朋友圈分享 -
shizhangliao:
android适配多分辨率的小技巧
文章列表
"adb nodaemon server" 查看端口是否被占用
"netstat -ano | findstr "5037"" 查看具体哪些进程占用了该端口
进入任务管理器,根据pid关闭占用端口的进程
重新启动 "adb start-server" !
Git
首先是进入相关目录,这边以/G/Main 为例
git bash 命令如下
cd /G/Main
然后初始化目录,命令如下
git init
初始化完毕后,就可以把工程拷贝进目录了,拷贝完毕,需要添加到库中
命令如下
git add .
添加完毕以后,就是提交 ...
待实现的接口
public interface ImageCallback {
void imageLoad(Drawable image,String imageUrl);
}
回调接口的方法
//参数有一个实现回调接口的imageCallback对象
public Drawable loadDrawable(final String imageUrl,final ImageCallback imageCallback){
Log.i("AsyncLoadImage", "loadDrawable()"+imageUr ...
APK包其实就是zip压缩文件
里边包含
res文件夹,资源文件和布局文件
meta-inf,主要是签名信息。
(正常eclipse工程里在模拟器启动的apk其实也是有签名的,只是系统默认的两个文件
platform.x509.pem,platform.pk8 通过signapk.jar集成起来的。)
AndroidManifest 文件 不做赘述了
class.dex 简单点理解,其实就是把java的class文件转换成davlik可执行的文件。
resource.arsc 可以下一个arsc程序打开,就是一些资源的键值对,类似于string资源文件的
说明,以及drawable,layou ...
Android 剪切板监听
- 博客分类:
- Android
在android 3.0 前后有点区别的
之前是在android.text.ClipboardManager包里,只支持setText(xx),getText(xx),hasText()
这些简单的方法
之后是在android.content.ClipboardManager包里的
增加了一个ClipData 这个对象
支持
ClipData.newIntent(label, intent);
ClipData.newUri(label, uri)
ClipData.newPlainText(label, text)
这些方法。
然后剪切板统一对ClipData这个对象操作了。
...
一.
1.什么是 OutOfMemoryError:
官方引用: Thrown when a request for memory is made that can not be satisfied using the available platform resources. Such a request may be made by both the running application or by an internal function of the VM.
通俗的讲:就是在请求一块内存 ...
一:什么是NDK?
NDK 提供了一系列的工具,帮助开发者快速开发C(或C++)的动态库,并能自动将so 和java 应用一起打包成apk。这些工具对开发者的帮助是巨大的。
NDK 集成了交叉编译器,并提供了相应的mk 文件隔 ...
Intent mailIntent = new Intent(Intent.ACTION_SEND);
String[] tos = { "xxx@xx.cn" };
//真机上用这个 模拟器上用"text/plain"
mailIntent.setType("message/rfc822");
mailIntent.putExtra(Intent.EXTRA_EMAIL, tos);
mailIntent.putExtra(android.content.Intent.EXTRA_SUBJ ...
Fragment的简单demo
- 博客分类:
- Android
package com.example.googleandroiddemo;
//
//import android.app.Activity;
//import android.os.Bundle;
//import android.support.v4.app.FragmentTransaction;
//import android.support.v4.app.ListFragment;
//import android.view.View;
//import android.widget.ArrayAdapter;
//import android.widget.L ...
IOS progressview的简单使用
- 博客分类:
- IOS 基础
head 代码。。
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
{
UIProgressView *progressview;
UIProgressView *progressviewbar;
NSTimer *timer;
}
@property(retain,nonatomic)
IBOutlet UIProgressView *progressview;
@property(retain,nonatomic)
IBOutlet U ...
自定义pickview以及选中效果
- 博客分类:
- IOS 基础
//
// ViewController.m
// UIPickerViewBySelf
//
// Created by MAC on 13-1-29.
// Copyright (c) 2013年 MAC. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize fontlabel;
@synthesize pickView ...
h文件代码
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
<UIPickerViewDelegate,UIPickerViewDataSource>
{
UILabel *fontLabel;
UIPickerView *fontPickView;
NSArray *fonts;
}
@property (nonatomic ,retain)
IBOutlet UILabel *fontLabel;
@property (nona ...
界面右边菜单滑入划出效果
- 博客分类:
- Android
用到的几个简单动画效果
left_in.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="100"
android:fromXDelta="-150"
android:fr ...
头文件里定义 label 和 datepicker
@interface ViewController : UIViewController
{
UILabel *dateLabel;
UIDatePicker *datePicker;
}
@property (nonatomic,retain)
IBOutlet UILabel *dateLabel;
@property(nonatomic,retain)
IBOutlet UIDatePicker *datePicker;
-(IBAction)dateChanged:(id)sender;
...
学习ios开发,写一个按钮点击事件。响应点击,弹出alertview,显示按钮事件。
头文件注册click事件
代码很简单一个IBACTION.
-(IBAction)btnclick:(id)sender;
响应意见再M文件内
- (IBAction)btnclick:(id)sender
{
// 强制转型为btn类型
UIButton *btn =(UIButton *)sender;
// 标题名称 带btn的tag
NSString *btnString =[NSString stringWithFormat:@"Bu ...