文章列表
head first系列真是好书。
==================================================================
数据库是保存表和其他相关SQL结构的容器
数据库内的信息组成了表
列是存储在表中的一块数据
行是一组某个事物的列的集合
行列构成了表
********************************
CREATE DATABASE database_name
USE database_name
CREATE TABLE table_name
(
column1 VARCHAR(10),
colum ...
ReadAsset.JAVA
SEE:
try {
InputStream is = getAssets().open("read_asset.txt");
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
String text = new String(buffer);
} catch ...
SearchInvoke.java
传送门
这个。。。
这里只是一个调用GOOGLE的searchUI的一个范例,不是具体实现什么功能,和menu键一样,那个搜索键的相关功能设置
SEE:
1.
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
super.onPrepareOptionsMenu(menu);
menu.removeItem(0);
menu.removeItem(1);
return true;
}
SO:
此函数可以动 ...
PreferencesFromXml.java
SEE:
1.
addPreferencesFromResource(R.xml.preferences);
2.R.xml.preferences.XML
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="@string/inline_preferences& ...
LauncherShortcuts.java
SEE:
1.
<activity android:name=".app.LauncherShortcuts"
android:label="@string/shortcuts">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
...
AlarmController.java
SEE:
1.
Intent intent = new Intent(AlarmController.this, OneShotAlarm.class);
PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this,
0, intent, 0);
// We want the alarm to go off 30 seconds from now.
...
PACKAGE: com.example.android.apis.app
CustomDialogActivity.java
SEE:
1.custom_dialog_activity.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/text"
android:layout_width="match_parent" android:layout_height="match_pa ...
1、API 8 的 apidemo 分析学习并记录笔记中
2、笔记的一般顺序为调用的顺序进行分析
com.example.android.apis 包
ApiDemosApplication.java
见 SEE
1、ApiDemosApplication extends Application
2、AndoirManifest.xml中的
Intent intent = getIntent();
String path = intent.getStringExtra("com.example.android.apis.Path") ...
android数独 解法逻辑
虽然说基本的数独都能解
网上查的那个最难的数独
{0,0,5,3,0,0,0,0,0},
{8,0,0,0,0,0,0,2,0},
{0,7,0,0,1,0,5,0,0},
{4,0,0,0,0,5,3,0,0},
{0,1,0,0,7,0,0,0,6},
{0,0,3,2,0,0,0,8,0},
{0,6,0,5,0,0,0,0,9},
{0,0,4,0,0,0,0,3,0},
{0,0,0,0,0,9,7,0,0}
看来需要添加假设模块呀?~
主要代码
public cl ...
android activity 测试
测试结果 正常情况下
1一个activity从创建到显示调用顺序onCreate->onStart->onResume //onResume开始时也会被调用,写在onResume中应只有恢复显示和创建共有的代码 2按返回键退出activityonPause->onStop->onDestroy3从应用管理中“强行停止”onPause->onStop //无Destroy4按返回退出后长按home键调出应用 或 点击应用重新进入onCreate->onStrat->onResume 5按主页键退出 然后长按hom ...
android 的重力感应开发
(希望可以弄个引擎出来~努力中)
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
安卓重力感应的基本测试代码
public class SensorTestActivity extends Activity {
/** Called when the activity is first created. */
private SensorManager sensorMgr;
Sensor sensor;
private int x, y, z;
private int ox=0, oy=0, oz=0;
...