锘??xml version="1.0" encoding="utf-8" standalone="yes"?>美女黄视频在线播放,亚洲精品一区国产,一本一道久久综合狠狠老精东影业 http://www.aygfsteel.com/airib/楠ㄧ伆紼嬪簭鍛?/description>zh-cn Sun, 18 May 2025 01:29:35 GMT Sun, 18 May 2025 01:29:35 GMT 60 js delete a row in the table http://www.aygfsteel.com/airib/archive/2011/03/15/346295.html灝忓織 灝忓織 Tue, 15 Mar 2011 03:13:00 GMT http://www.aygfsteel.com/airib/archive/2011/03/15/346295.html http://www.aygfsteel.com/airib/comments/346295.html http://www.aygfsteel.com/airib/archive/2011/03/15/346295.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/346295.html http://www.aygfsteel.com/airib/services/trackbacks/346295.html
$jQuery('#createTb').children().get(0).removeChild($jQuery('#createTb').children().get(0).lastChild);
]]> js璋冪敤鑷繁鍚?/title> http://www.aygfsteel.com/airib/archive/2011/02/15/344380.html灝忓織 灝忓織 Tue, 15 Feb 2011 09:49:00 GMT http://www.aygfsteel.com/airib/archive/2011/02/15/344380.html http://www.aygfsteel.com/airib/comments/344380.html http://www.aygfsteel.com/airib/archive/2011/02/15/344380.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/344380.html http://www.aygfsteel.com/airib/services/trackbacks/344380.html
]]> Unable to get system library for project http://www.aygfsteel.com/airib/archive/2010/12/22/341297.html灝忓織 灝忓織 Wed, 22 Dec 2010 02:22:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/22/341297.html http://www.aygfsteel.com/airib/comments/341297.html http://www.aygfsteel.com/airib/archive/2010/12/22/341297.html#Feedback 1 http://www.aygfsteel.com/airib/comments/commentRss/341297.html http://www.aygfsteel.com/airib/services/trackbacks/341297.html property->android . So it is.
]]> 鐢佃剳濡備綍鐢╪600涓婄綉 http://www.aygfsteel.com/airib/archive/2010/12/14/340652.html灝忓織 灝忓織 Tue, 14 Dec 2010 07:40:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/14/340652.html http://www.aygfsteel.com/airib/comments/340652.html http://www.aygfsteel.com/airib/archive/2010/12/14/340652.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/340652.html http://www.aygfsteel.com/airib/services/trackbacks/340652.html
鎶奛600榪炲湪鐢佃剳涓?鍦ㄦ墜鏈轟笂 閫?璁劇疆"____ "搴旂敤" ____"寮鍙?鎶?USB璋冭瘯"鎵撳紑,灝辮兘鐢ㄤ簡
]]> android-sdk-windows涓繘琛?update all鏃?/title> http://www.aygfsteel.com/airib/archive/2010/12/14/340602.html灝忓織 灝忓織 Tue, 14 Dec 2010 02:27:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/14/340602.html http://www.aygfsteel.com/airib/comments/340602.html http://www.aygfsteel.com/airib/archive/2010/12/14/340602.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/340602.html http://www.aygfsteel.com/airib/services/trackbacks/340602.html ]]> android lifecircle http://www.aygfsteel.com/airib/archive/2010/12/09/340144.html灝忓織 灝忓織 Thu, 09 Dec 2010 06:41:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/09/340144.html http://www.aygfsteel.com/airib/comments/340144.html http://www.aygfsteel.com/airib/archive/2010/12/09/340144.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/340144.html http://www.aygfsteel.com/airib/services/trackbacks/340144.html
]]>android Sqlite 浣跨敤 http://www.aygfsteel.com/airib/archive/2010/12/09/340136.html灝忓織 灝忓織 Thu, 09 Dec 2010 05:10:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/09/340136.html http://www.aygfsteel.com/airib/comments/340136.html http://www.aygfsteel.com/airib/archive/2010/12/09/340136.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/340136.html http://www.aygfsteel.com/airib/services/trackbacks/340136.html
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
public class DictionaryOpenHelper extends SQLiteOpenHelper {
private static final int DATABASE_VERSION = 2;
private static final String DICTIONARY_TABLE_NAME = " user ";
private static final String DICTIONARY_TABLE_CREATE =
"CREATE TABLE " + DICTIONARY_TABLE_NAME + " (" +
"id" + " int, " +
"name" + " TEXT);";
DictionaryOpenHelper(Context context) {
super(context, "airib_database", null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
// db.execSQL(DICTIONARY_TABLE_CREATE);
}
@Override
public void onUpgrade(SQLiteDatabase arg0, int arg1, int arg2)
{
}
}
package fil.ted.test;
import android.app.Activity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Environment;
import android.util.Log;
public class TestDAO
{
public static String getString(Activity activity)
{
// StringBuffer strBuf = new StringBuffer(Environment.getDataDirectory().toString());
// strBuf.append("/data/data/");
// strBuf.append("fil.ted.test");
//
// strBuf.append("/databases/");
// strBuf.append("air");
// String dbPath = strBuf.toString();
// SQLiteDatabase db = SQLiteDatabase.openDatabase(dbPath, null, SQLiteDatabase.OPEN_READWRITE);
// db.execSQL("select id from airib");
DictionaryOpenHelper mDbHelper= new DictionaryOpenHelper(activity);
SQLiteDatabase db = mDbHelper.getReadableDatabase();
String [] strr ={"id","name"};
Cursor cursor = db.query("user", strr,
null, null, null, null, null);
//return cursor.toString();
String str = "start---";
if(cursor.moveToFirst()){
do{
str = str+cursor.getString(0)+cursor.getString(1)+""t";
}while(cursor.moveToNext());
}
return str;
}
/**
* @param args
*/
public static void main(String[] args)
{
System.out.println(12);
}
}
]]> Android ImageAdapter and Gallery http://www.aygfsteel.com/airib/archive/2010/12/09/340134.html灝忓織 灝忓織 Thu, 09 Dec 2010 05:06:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/09/340134.html http://www.aygfsteel.com/airib/comments/340134.html http://www.aygfsteel.com/airib/archive/2010/12/09/340134.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/340134.html http://www.aygfsteel.com/airib/services/trackbacks/340134.html
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
public class ImageAdapter extends BaseAdapter {
//瀹氫箟Context錛屽嵆Activity
private Context context;
//瀹氫箟鏁村瀷鏁扮粍 鍗沖浘鐗囨簮銆?br />
private Integer image[]
=
{
R.drawable.add_symbol,
R.drawable.delete_icon,
R.drawable.delete_key,
R.drawable.neato,
R.drawable.plus,
R.drawable.igoogle_logo_sm
};
public ImageAdapter(Context c) throws IllegalArgumentException, IllegalAccessException{
context=c;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
//鑾峰彇鍥劇墖涓暟銆?br />
return Integer.MAX_VALUE;
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
//鑾峰彇鍥劇墖鍦ㄥ簱涓殑浣嶇疆銆?br />
return position;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
//鑾峰彇鍥劇墖鍦ㄥ簱涓殑浣嶇疆銆?br />
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
ImageView imageview=new ImageView(context);
//緇檌mageView璁劇疆鍥劇墖璧勬簮銆?br />
imageview.setImageResource(image[position%image.length]);
//璁劇疆姣斾緥綾誨瀷銆?br />
imageview.setScaleType(ImageView.ScaleType.FIT_XY);
//璁劇疆鍥劇墖甯冨眬鍜屾樉紺哄ぇ灝忋?br />
imageview.setLayoutParams(new Gallery.LayoutParams(100,100));
//璁劇疆鍥劇墖涔嬮棿鐨勮窛紱匯?br />
imageview.setPadding(15,0,15,0);
return imageview;
}
}
setContentView(R.layout.main);
// 鍒濆鍖朑allery銆?br />
gallery = (Gallery) findViewById(R.id.gallery);
try
{
// 璁劇疆Gallery鐨凙dapter銆?br />
gallery.setAdapter(new ImageAdapter(TestAndroidActivity.this));
}
catch (IllegalArgumentException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IllegalAccessException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
// 鐐瑰嚮浜嬩歡銆?br />
gallery.setOnItemClickListener(new OnItemClickListener()
{
@Override
public void onItemClick(AdapterView arg0, View arg1, int itemid, long arg3)
{
// TODO Auto-generated method stub
setTitle("鎮ㄧ偣鍑諱簡絎? + String.valueOf(itemid + 1) + "欏?);
}
});
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<gallery android:id="@+id/gallery" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_margintop="30dp">
</gallery>
</linearlayout>
]]> http://www.qqjia.com/test/iq1.htm http://www.aygfsteel.com/airib/archive/2010/12/06/339910.html灝忓織 灝忓織 Mon, 06 Dec 2010 09:10:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/06/339910.html http://www.aygfsteel.com/airib/comments/339910.html http://www.aygfsteel.com/airib/archive/2010/12/06/339910.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/339910.html http://www.aygfsteel.com/airib/services/trackbacks/339910.html ]]>android ScrollView scroll to the top http://www.aygfsteel.com/airib/archive/2010/12/01/339475.html灝忓織 灝忓織 Wed, 01 Dec 2010 02:28:00 GMT http://www.aygfsteel.com/airib/archive/2010/12/01/339475.html http://www.aygfsteel.com/airib/comments/339475.html http://www.aygfsteel.com/airib/archive/2010/12/01/339475.html#Feedback 0 http://www.aygfsteel.com/airib/comments/commentRss/339475.html http://www.aygfsteel.com/airib/services/trackbacks/339475.html
]]>
主站蜘蛛池模板:
瑞昌市 |
游戏 |
望城县 |
北川 |
改则县 |
大冶市 |
思南县 |
新巴尔虎右旗 |
政和县 |
九江县 |
九江市 |
临猗县 |
扎赉特旗 |
垣曲县 |
呈贡县 |
吉首市 |
绍兴县 |
通辽市 |
平乐县 |
宝应县 |
土默特右旗 |
如皋市 |
两当县 |
固镇县 |
武胜县 |
大城县 |
宜阳县 |
宜君县 |
翁牛特旗 |
博兴县 |
营山县 |
中超 |
乌海市 |
高青县 |
阳新县 |
会昌县 |
肇州县 |
平乡县 |
泾川县 |
拉萨市 |
涪陵区 |