当前位置:  编程技术>移动开发
本页文章导读:
    ▪图片转向String传个给服务端        图片转为String传个给服务端上传头像等图片比较简单的一种就是直接把图片--- >String 再作为参数post给服务端 之所以用post是因为string都会很长~ 下面见代码 try { ByteArrayOutputStream stream = n.........
    ▪ UINavigation常见用法跟导航控制栏的定制        UINavigation常见用法和导航控制栏的定制1.常用方法 - (id)initWithRootViewController:(UIViewController *)rootViewController; //初始化设置跟视图控制器 - (void)pushViewController:(UIViewController *)viewController animated:(BOO.........
    ▪ showDialog步骤 deprecated       showDialog方法 deprecated     发现敲入showDialog方法废弃或者过时真的查不到什么,直接打了showDialog deprecated上去,英文就英文吧。      不愧是StackOverFlow网站(好风趣的名字),令我惊讶的.........

[1]图片转向String传个给服务端
    来源: 互联网  发布时间: 2014-02-18
图片转为String传个给服务端

上传头像等图片比较简单的一种就是直接把图片--- >String 再作为参数post给服务端

之所以用post是因为string都会很长~


下面见代码

try {
				ByteArrayOutputStream stream = new ByteArrayOutputStream();
				 photo.compress(Bitmap.CompressFormat.JPEG, 60, stream);
				 byte[] b = stream.toByteArray();
				 // 将图片流以字符串形式存储下来
				 String tp = new String(Base64Coder.encodeLines(b));//tp 就是最终的参数

			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}


为了检验本地可以尝试把string - 〉图片

                                byte[] tempb = Base64Coder.decode(tp);
				Bitmap bitmap = BitmapFactory.decodeByteArray(tempb, 0, tempb.length);
				ImageVIew.setImageBitmap(bitmap);


另外这个方法用到两个java类在下面

import java.io.IOException;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

public class Base64 {
	/** prevents anyone from instantiating this class */
	private Base64() {
	}

	/**
	 * This character array provides the alphabet map from RFC1521.
	 */
	private final static char ALPHABET[] = {
			// 0 1 2 3 4 5 6 7
			'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', // 0
			'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', // 1
			'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', // 2
			'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', // 3
			'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', // 4
			'o', 'p', 'q', 'r', 's', 't', 'u', 'v', // 5
			'w', 'x', 'y', 'z', '0', '1', '2', '3', // 6
			'4', '5', '6', '7', '8', '9', '+', '/' // 7
	};

	/**
	 * Decodes a 7 bit Base64 character into its binary value.
	 */
	private static int valueDecoding[] = new int[128];

	/**
	 * initializes the value decoding array from the character map
	 */
	static {
		for (int i = 0; i < valueDecoding.length; i++) {
			valueDecoding[i] = -1;
		}

		for (int i = 0; i < ALPHABET.length; i++) {
			valueDecoding[ALPHABET[i]] = i;
		}
	}

	/**
	 * Converts a byte array into a Base64 encoded string.
	 * 
	 * @param data
	 *            bytes to encode
	 * @param offset
	 *            which byte to start at
	 * @param length
	 *            how many bytes to encode; padding will be added if needed
	 * @return base64 encoding of data; 4 chars for every 3 bytes
	 */
	public static String encode(byte[] data, int offset, int length) {
		int i;
		int encodedLen;
		char[] encoded;

		// 4 chars for 3 bytes, run input up to a multiple of 3
		encodedLen = (length + 2) / 3 * 4;
		encoded = new char[encodedLen];

		for (i = 0, encodedLen = 0; encodedLen < encoded.length; i += 3, encodedLen += 4) {
			encodeQuantum(data, offset + i, length - i, encoded, encodedLen);
		}

		return new String(encoded);
	}

	/**
	 * Encodes 1, 2, or 3 bytes of data as 4 Base64 chars.
	 * 
	 * @param in
	 *            buffer of bytes to encode
	 * @param inOffset
	 *            where the first byte to encode is
	 * @param len
	 *            how many bytes to encode
	 * @param out
	 *            buffer to put the output in
	 * @param outOffset
	 *            where in the output buffer to put the chars
	 */
	private static void encodeQuantum(byte in[], int inOffset, int len,
			char out[], int outOffset) {
		byte a = 0, b = 0, c = 0;

		a = in[inOffset];
		out[outOffset] = ALPHABET[(a >>> 2) & 0x3F];

		if (len > 2) {
			b = in[inOffset + 1];
			c = in[inOffset + 2];
			out[outOffset + 1] = ALPHABET[((a << 4) & 0x30) + ((b >>> 4) & 0xf)];
			out[outOffset + 2] = ALPHABET[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)];
			out[outOffset + 3] = ALPHABET[c & 0x3F];
		} else if (len > 1) {
			b = in[inOffset + 1];
			out[outOffset + 1] = ALPHABET[((a << 4) & 0x30) + ((b >>> 4) & 0xf)];
			out[outOffset + 2] = ALPHABET[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)];
			out[outOffset + 3] = '=';
		} else {
			out[outOffset + 1] = ALPHABET[((a << 4) & 0x30) + ((b >>> 4) & 0xf)];
			out[outOffset + 2] = '=';
			out[outOffset + 3] = '=';
		}
	}

	/**
	 * Converts a Base64 encoded string to a byte array.
	 * 
	 * @param encoded
	 *            Base64 encoded data
	 * @return decode binary data; 3 bytes for every 4 chars - minus padding
	 * @exception IOException
	 *                is thrown, if an I/O error occurs reading the data
	 */
	public static byte[] decode(String encoded) throws IOException {
		return decode(encoded, 0, encoded.length());
	}

	/**
	 * Converts an embedded Base64 encoded string to a byte array.
	 * 
	 * @param encoded
	 *            a String with Base64 data embedded in it
	 * @param offset
	 *            which char of the String to start at
	 * @param length
	 *            how many chars to decode; must be a multiple of 4
	 * @return decode binary data; 3 bytes for every 4 chars - minus padding
	 * @exception IOException
	 *                is thrown, if an I/O error occurs reading the data
	 */
	public static byte[] decode(String encoded, int offset, int length)
			throws IOException {
		int i;
		int decodedLen;
		byte[] decoded;

		// the input must be a multiple of 4
		if (length % 4 != 0) {
			throw new IOException("Base64 string length is not multiple of 4");
		}

		// 4 chars for 3 bytes, but there may have been pad bytes
		decodedLen = length / 4 * 3;
		if (encoded.charAt(offset + length - 1) == '=') {
			decodedLen--;
			if (encoded.charAt(offset + length - 2) == '=') {
				decodedLen--;
			}
		}

		decoded = new byte[decodedLen];
		for (i = 0, decodedLen = 0; i < length; i += 4, decodedLen += 3) {
			decodeQuantum(encoded.charAt(offset + i),
					encoded.charAt(offset + i + 1),
					encoded.charAt(offset + i + 2),
					encoded.charAt(offset + i + 3), decoded, decodedLen);
		}

		return decoded;
	}

	/**
	 * Decode 4 Base64 chars as 1, 2, or 3 bytes of data.
	 * 
	 * @param in1
	 *            first char of quantum to decode
	 * @param in2
	 *            second char of quantum to decode
	 * @param in3
	 *            third char of quantum to decode
	 * @param in4
	 *            forth char of quantum to decode
	 * @param out
	 *            buffer to put the output in
	 * @param outOffset
	 *            where in the output buffer to put the bytes
	 */
	private static void decodeQuantum(char in1, char in2, char in3, char in4,
			byte[] out, int outOffset) throws IOException {
		int a = 0, b = 0, c = 0, d = 0;
		int pad = 0;

		a = valueDecoding[in1 & 127];
		b = valueDecoding[in2 & 127];

		if (in4 == '=') {
			pad++;
			if (in3 == '=') {
				pad++;
			} else {
				c = valueDecoding[in3 & 127];
			}
		} else {
			c = valueDecoding[in3 & 127];
			d = valueDecoding[in4 & 127];
		}

		if (a < 0 || b < 0 || c < 0 || d < 0) {
			throw new IOException("Invalid character in Base64 string");
		}

		// the first byte is the 6 bits of a and 2 bits of b
		out[outOffset] = (byte) (((a << 2) & 0xfc) | ((b >>> 4) & 3));

		if (pad < 2) {
			// the second byte is 4 bits of b and 4 bits of c
			out[outOffset + 1] = (byte) (((b << 4) & 0xf0) | ((c >>> 2) & 0xf));

			if (pad < 1) {
				// the third byte is 2 bits of c and 4 bits of d
				out[outOffset + 2] = (byte) (((c << 6) & 0xc0) | (d & 0x3f));
			}
		}
	}

	/**
	 * 将字符串转换成Bitmap类型
	 * 
	 * @param string
	 * @return
	 */
	public static Bitmap stringtoBitmap(String string) {
		Bitmap bitmap = null;
		try {
			byte[] bitmapArray;
			bitmapArray = decode(string);
			bitmap = BitmapFactory.decodeByteArray(bitmapArray, 0,bitmapArray.length);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return bitmap;
	}

}


public class Base64Coder {

	// The line separator string of the operating system.
	private static final String systemLineSeparator = System
			.getProperty("line.separator");

	// Mapping table from 6-bit nibbles to Base64 characters.
	private static char[] map1 = new char[64];
	static {
		int i = 0;
		for (char c = 'A'; c <= 'Z'; c++)
			map1[i++] = c;
		for (char c = 'a'; c <= 'z'; c++)
			map1[i++] = c;
		for (char c = '0'; c <= '9'; c++)
			map1[i++] = c;
		map1[i++] = '+';
		map1[i++] = '/';
	}

	// Mapping table from Base64 characters to 6-bit nibbles.
	private static byte[] map2 = new byte[128];
	static {
		for (int i = 0; i < map2.length; i++)
			map2[i] = -1;
		for (int i = 0; i < 64; i++)
			map2[map1[i]] = (byte) i;
	}

	/**
	 * Encodes a string into Base64 format. No blanks or line breaks are
	 * inserted.
	 * 
	 * @param s
	 *            A String to be encoded.
	 * @return A String containing the Base64 encoded data.
	 */
	public static String encodeString(String s) {
		return new String(encode(s.getBytes()));
	}

	/**
	 * Encodes a byte array into Base 64 format and breaks the output into lines
	 * of 76 characters. This method is compatible with
	 * <code>sun.misc.BASE64Encoder.encodeBuffer(byte[])</code>.
	 * 
	 * @param in
	 *            An array containing the data bytes to be encoded.
	 * @return A String containing the Base64 encoded data, broken into lines.
	 */
	public static String encodeLines(byte[] in) {
		return encodeLines(in, 0, in.length, 76, systemLineSeparator);
	}

	/**
	 * Encodes a byte array into Base 64 format and breaks the output into
	 * lines.
	 * 
	 * @param in
	 *            An array containing the data bytes to be encoded.
	 * @param iOff
	 *            Offset of the first byte in <code>in</code> to be processed.
	 * @param iLen
	 *            Number of bytes to be processed in <code>in</code>, starting
	 *            at <code>iOff</code>.
	 * @param lineLen
	 *            Line length for the output data. Should be a multiple of 4.
	 * @param lineSeparator
	 *            The line separator to be used to separate the output lines.
	 * @return A String containing the Base64 encoded data, broken into lines.
	 */
	public static String encodeLines(byte[] in, int iOff, int iLen,
			int lineLen, String lineSeparator) {
		int blockLen = (lineLen * 3) / 4;
		if (blockLen <= 0)
			throw new IllegalArgumentException();
		int lines = (iLen + blockLen - 1) / blockLen;
		int bufLen = ((iLen + 2) / 3) * 4 + lines * lineSeparator.length();
		StringBuilder buf = new StringBuilder(bufLen);
		int ip = 0;
		while (ip < iLen) {
			int l = Math.min(iLen - ip, blockLen);
			buf.append(encode(in, iOff + ip, l));
			buf.append(lineSeparator);
			ip += l;
		}
		return buf.toString();
	}

	/**
	 * Encodes a byte array into Base64 format. No blanks or line breaks are
	 * inserted in the output.
	 * 
	 * @param in
	 *            An array containing the data bytes to be encoded.
	 * @return A character array containing the Base64 encoded data.
	 */
	public static char[] encode(byte[] in) {
		return encode(in, 0, in.length);
	}

	/**
	 * Encodes a byte array into Base64 format. No blanks or line breaks are
	 * inserted in the output.
	 * 
	 * @param in
	 *            An array containing the data bytes to be encoded.
	 * @param iLen
	 *            Number of bytes to process in <code>in</code>.
	 * @return A character array containing the Base64 encoded data.
	 */
	public static char[] encode(byte[] in, int iLen) {
		return encode(in, 0, iLen);
	}

	/**
	 * Encodes a byte array into Base64 format. No blanks or line breaks are
	 * inserted in the output.
	 * 
	 * @param in
	 *            An array containing the data bytes to be encoded.
	 * @param iOff
	 *            Offset of the first byte in <code>in</code> to be processed.
	 * @param iLen
	 *            Number of bytes to process in <code>in</code>, starting at
	 *            <code>iOff</code>.
	 * @return A character array containing the Base64 encoded data.
	 */
	public static char[] encode(byte[] in, int iOff, int iLen) {
		int oDataLen = (iLen * 4 + 2) / 3; // output length without padding
		int oLen = ((iLen + 2) / 3) * 4; // output length including padding
		char[] out = new char[oLen];
		int ip = iOff;
		int iEnd = iOff + iLen;
		int op = 0;
		while (ip < iEnd) {
			int i0 = in[ip++] & 0xff;
			int i1 = ip < iEnd ? in[ip++] & 0xff : 0;
			int i2 = ip < iEnd ? in[ip++] & 0xff : 0;
			int o0 = i0 >>> 2;
			int o1 = ((i0 & 3) << 4) | (i1 >>> 4);
			int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6);
			int o3 = i2 & 0x3F;
			out[op++] = map1[o0];
			out[op++] = map1[o1];
			out[op] = op < oDataLen ? map1[o2] : '=';
			op++;
			out[op] = op < oDataLen ? map1[o3] : '=';
			op++;
		}
		return out;
	}

	/**
	 * Decodes a string from Base64 format. No blanks or line breaks are allowed
	 * within the Base64 encoded input data.
	 * 
	 * @param s
	 *            A Base64 String to be decoded.
	 * @return A String containing the decoded data.
	 * @throws IllegalArgumentException
	 *             If the input is not valid Base64 encoded data.
	 */
	public static String decodeString(String s) {
		return new String(decode(s));
	}

	/**
	 * Decodes a byte array from Base64 format and ignores line separators, tabs
	 * and blanks. CR, LF, Tab and Space characters are ignored in the input
	 * data. This method is compatible with
	 * <code>sun.misc.BASE64Decoder.decodeBuffer(String)</code>.
	 * 
	 * @param s
	 *            A Base64 String to be decoded.
	 * @return An array containing the decoded data bytes.
	 * @throws IllegalArgumentException
	 *             If the input is not valid Base64 encoded data.
	 */
	public static byte[] decodeLines(String s) {
		char[] buf = new char[s.length() + 3];
		int p = 0;
		for (int ip = 0; ip < s.length(); ip++) {
			char c = s.charAt(ip);
			if (c != ' ' && c != '\r' && c != '\n' && c != '\t')
				buf[p++] = c;
		}
		while ((p % 4) != 0)
			buf[p++] = '0';

		return decode(buf, 0, p);
	}

	/**
	 * Decodes a byte array from Base64 format. No blanks or line breaks are
	 * allowed within the Base64 encoded input data.
	 * 
	 * @param s
	 *            A Base64 String to be decoded.
	 * @return An array containing the decoded data bytes.
	 * @throws IllegalArgumentException
	 *             If the input is not valid Base64 encoded data.
	 */
	public static byte[] decode(String s) {
		return decode(s.toCharArray());
	}

	/**
	 * Decodes a byte array from Base64 format. No blanks or line breaks are
	 * allowed within the Base64 encoded input data.
	 * 
	 * @param in
	 *            A character array containing the Base64 encoded data.
	 * @return An array containing the decoded data bytes.
	 * @throws IllegalArgumentException
	 *             If the input is not valid Base64 encoded data.
	 */
	public static byte[] decode(char[] in) {
		return decode(in, 0, in.length);
	}

	/**
	 * Decodes a byte array from Base64 format. No blanks or line breaks are
	 * allowed within the Base64 encoded input data.
	 * 
	 * @param in
	 *            A character array containing the Base64 encoded data.
	 * @param iOff
	 *            Offset of the first character in <code>in</code> to be
	 *            processed.
	 * @param iLen
	 *            Number of characters to process in <code>in</code>, starting
	 *            at <code>iOff</code>.
	 * @return An array containing the decoded data bytes.
	 * @throws IllegalArgumentException
	 *             If the input is not valid Base64 encoded data.
	 */
	public static byte[] decode(char[] in, int iOff, int iLen) {
		if (iLen % 4 != 0)
			throw new IllegalArgumentException(
					"Length of Base64 encoded input string is not a multiple of 4.");
		while (iLen > 0 && in[iOff + iLen - 1] == '=')
			iLen--;
		int oLen = (iLen * 3) / 4;
		byte[] out = new byte[oLen];
		int ip = iOff;
		int iEnd = iOff + iLen;
		int op = 0;
		while (ip < iEnd) {
			int i0 = in[ip++];
			int i1 = in[ip++];
			int i2 = ip < iEnd ? in[ip++] : 'A';
			int i3 = ip < iEnd ? in[ip++] : 'A';
			if (i0 > 127 || i1 > 127 || i2 > 127 || i3 > 127)
				throw new IllegalArgumentException(
						"Illegal character in Base64 encoded data.");
			int b0 = map2[i0];
			int b1 = map2[i1];
			int b2 = map2[i2];
			int b3 = map2[i3];
			if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0)
				throw new IllegalArgumentException(
						"Illegal character in Base64 encoded data.");
			int o0 = (b0 << 2) | (b1 >>> 4);
			int o1 = ((b1 & 0xf) << 4) | (b2 >>> 2);
			int o2 = ((b2 & 3) << 6) | b3;
			out[op++] = (byte) o0;
			if (op < oLen)
				out[op++] = (byte) o1;
			if (op < oLen)
				out[op++] = (byte) o2;
		}
		return out;
	}

	// Dummy constructor.
	private Base64Coder() {
	}

}




    
[2] UINavigation常见用法跟导航控制栏的定制
    来源: 互联网  发布时间: 2014-02-18
UINavigation常见用法和导航控制栏的定制

1.常用方法

- (id)initWithRootViewController:(UIViewController *)rootViewController; //初始化设置跟视图控制器

- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated;//将新的视图压栈

- (NSArray *)popToViewController:(UIViewController *)viewController animated:(BOOL)animated;//出栈到指定的视图控制器

- (NSArray *)popToRootViewControllerAnimated:(BOOL)animated;//出栈到跟视图控制器

2.常用属性:

@property(nonatomic,readonly,retain)UIViewController *topViewController;//栈顶的控制器

@property(nonatomic,readonly,retain)UIViewController *visibleViewController;//当前显示的控制器

@property(nonatomic,copy)NSArray *viewControllers; // 栈中包含的所有控制器

- (void)setViewControllers:(NSArray *)viewControllers animated:(BOOL)animatedNS_AVAILABLE_IOS(3_0);// If animated is YES, then simulate a push or pop depending on whether the new top view controller was previously in the stack.

@property(nonatomic,getter=isNavigationBarHidden)BOOL navigationBarHidden;

//navigationBar默认隐藏

- (void)setToolbarHidden:(BOOL)hidden animated:(BOOL)animatedNS_AVAILABLE_IOS(3_0);//设置toobar的状态

@property(nonatomic,readonly) UIToolbar *toolbarNS_AVAILABLE_IOS(3_0);//返回toolbar

3. 实现对leftBarButton的定制

  UIBarButtonItem *leftItem=[[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera target:self action:@selector(clickedleft:)]autorelease];
    self.navigationItem.leftBarButtonItem=leftItem;

4.实现对中间view的定制:

    UIView *titleView=[[[UIView alloc] initWithFrame:CGRectMake(0, 0, 30, 30)] autorelease];
    titleView.backgroundColor=[UIColor blueColor];
    self.navigationItem.titleView=titleView;

5.实现对右侧view的定制:

UIButton *button=[[[UIButton alloc]initWithFrame:CGRectMake(5, 5, 30, 30)] autorelease];
    [button addTarget:self action:@selector(clickedRight) forControlEvents:UIControlEventTouchUpInside];
    [button setBackgroundColor:[UIColor yellowColor]];
    UIBarButtonItem *rightItem=[[UIBarButtonItem alloc] initWithCustomView:button];
    self.navigationItem.rightBarButtonItem=rightItem;







    
[3] showDialog步骤 deprecated
    来源: 互联网  发布时间: 2014-02-18
showDialog方法 deprecated

     发现敲入showDialog方法废弃或者过时真的查不到什么,直接打了showDialog deprecated上去,英文就英文吧。


     不愧是StackOverFlow网站(好风趣的名字),令我惊讶的是,这个提问在一年前就有了。老外的东西还是老外快一点。


     参考两个帖子http://stackoverflow.com/questions/11220820/the-method-showdialogint-from-the-type-activity-is-deprecated-in-android

和http://stackoverflow.com/questions/10285047/showdialog-deprecated-whats-the-alternative/10285062#10285062

  

    其实查官方Api的时候就能看到。 showDialog(int id)是在Api level 1 添加的方法。Api level 13(Honeycomb 3.0) 时方法就废弃了。在程序里面调用Dialog使用新的DialogFragment类代替FragmentManager(既然知道这个代替了,就自己查查api吧,看怎么用)。通过Android的兼容包,在旧平台也是可用的。


      Fragment(Fragment代表在一个Activity里面用户接口的一个行为或者一部分)显示一个对话框窗口并且位于Activity窗口的顶层,其中这样的Fragment就包括了Dialog类,正确的显示基于fragment的状态。控制对话框的show,hide, dismiss 应该通过Api的调用而不是直接调用对话框。


     问底一下的话,为什么废弃?接下来他还回答了引用了别人的帖子

Android DialogFragment vs Dialog

      为什么用一个单独的DialogFragment而不用一个简单的Dialog,这不是很荒谬么。看完Api文档里面的介绍DialogFragment的代码一大堆,使用一个有Yes或者No的按钮只需要AlertDialog builder 创建一个AlertDialog就行了,没必要编那么多。

     在Fragment中处理事件有很多种方法,但我只需要简单通过构造器把定义的消息Handler放进DialogFragment中,然后再把消息准确的与各种点击相响应。

private Message okMessage;
...
okMessage = handler.obtainMessage(MY_MSG_WHAT, MY_MSG_OK);
public void onClick(.....
    if (which == DialogInterface.BUTTON_POSITIVE) {
        final Message toSend = Message.obtain(okMessage);
        toSend.sendToTarget();
    }
 }
outState.putParcelable("okMessage", okMessage);
if (savedInstanceState != null) {
    okMessage = savedInstanceState.getParcelable("okMessage");
}

后面代码的意图我不是很懂。


     以前小学一下,这段时间要用到Android就重新学了一下,当发现手机一连上之后Eclipse可以直接编译到手机运行时很激动。


        世界也在变,时代也在变,人在不,很多方法废弃,虽然用的是吴亚峰老师的书,2012年一月。我的手机从2.2刷到2.3再刷4.0.


        发现很搞笑的东西,之前初学时是观看Mars老师的视频,然后我用周末的时间用来学,后面太多事情就放了放,发现他坚持了好久,有些时候还是凌晨的,后面到53集断了,进来光顾他论坛又发现开始更新,而且还在淘宝卖东西了。当时马士兵老师也没有看好Android,刚起步,放远一下开源的东西,加上比苹果更亲民的价格,确实苹果价格虽然“高”,是有人买得起,房子也是这个道理。应该是越来越火的。如果Nokia当年像HTC早点搭上这班车,可能还是霸主,也不用卖楼。

     

      不过还是那句,手机上用自己写点代码能在自己的手机展示很多东西,It is

amazing!



    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
HTML标签参考手册 iis7站长之家
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3