上一页 1 ··· 129 130 131 132 133 134 135 136 137 ··· 168 下一页
摘要: package com.example.preference;import android.content.Context;import android.os.Bundle;import android.preference.CheckBoxPreference;import android.pre... 阅读全文
posted @ 2015-11-25 11:15 无天666 阅读(614) 评论(0) 推荐(0)
摘要: msysgit是Windows版的Git,提供了命令行操作 下载地址:http://msysgit.github.io/ 2.TortoiseGIT 是Git版本控制系统的一个免费开源客户端,它是git版本控制的 Windows 扩展。可以使你避免使用枯燥而且不方便的命令行。它完全嵌入 Window... 阅读全文
posted @ 2015-11-25 06:22 无天666 阅读(209) 评论(0) 推荐(0)
摘要: activity:package com.itheima.ccalljava;import android.os.Bundle;import android.app.Activity;import android.app.AlertDialog.Builder;import android.view... 阅读全文
posted @ 2015-11-24 21:53 无天666 阅读(288) 评论(0) 推荐(0)
摘要: 1.PreferenceActivity 介绍PreferenceActivity 继承ListActivity 它是以一个列表的形式在展现内容,它最主要的特点是添加Preference可以让控件的状态持久化储存,举个例子 比如用户选中checkbox后 退出应用然后在进入应用,这时用户希望看到的是... 阅读全文
posted @ 2015-11-24 15:30 无天666 阅读(357) 评论(0) 推荐(0)
摘要: /* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this fil... 阅读全文
posted @ 2015-11-23 22:53 无天666 阅读(1096) 评论(0) 推荐(0)
摘要: package com.itheima.charencode;import android.os.Bundle;import android.app.Activity;import android.view.Menu;import android.view.View;import android.w... 阅读全文
posted @ 2015-11-23 21:34 无天666 阅读(594) 评论(0) 推荐(0)
摘要: MainActivity:package com.itheima.helloworld1;import android.os.Bundle;import android.app.Activity;import android.view.View;import android.widget.Toast... 阅读全文
posted @ 2015-11-22 21:28 无天666 阅读(654) 评论(0) 推荐(0)
摘要: ##交叉编译(编译就是编译成汇编指令,使得电脑能够识别,比如windows平台模拟linux平台编译出来得程序可以在linux上运行。)* 在一个平台下,编译出另一个平台能够执行的二进制的代码* 平台:windows,mac os,linux* 处理器:x86,arm,mips##交叉编译的原理* ... 阅读全文
posted @ 2015-11-22 14:40 无天666 阅读(163) 评论(0) 推荐(0)
摘要: #include #include void study(){ printf("吃饭睡觉打李志\n");}//定义一个结构体 ,C语言没有对象, struct student{ int age; int height; char sex;//char是1个... 阅读全文
posted @ 2015-11-22 10:18 无天666 阅读(563) 评论(0) 推荐(0)
摘要: #include #include #include //包含头文件 main(){ int i = 3;//栈中 int arr[10];//栈中 int* p = malloc(sizeof(int) * 10);//p在栈中,malloc在堆里面长度... 阅读全文
posted @ 2015-11-22 09:43 无天666 阅读(253) 评论(0) 推荐(0)
上一页 1 ··· 129 130 131 132 133 134 135 136 137 ··· 168 下一页