一個Android框架下實現(xiàn)登錄和Google檢索的應用程序.docx_第1頁
一個Android框架下實現(xiàn)登錄和Google檢索的應用程序.docx_第2頁
一個Android框架下實現(xiàn)登錄和Google檢索的應用程序.docx_第3頁
一個Android框架下實現(xiàn)登錄和Google檢索的應用程序.docx_第4頁
一個Android框架下實現(xiàn)登錄和Google檢索的應用程序.docx_第5頁
已閱讀5頁,還剩4頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

1. 需求設計在Android的數(shù)據(jù)庫創(chuàng)建一個login表,包括密碼和賬戶兩個字段 實現(xiàn)兩個activity應用程序,其中一個,提供兩個入力框,分別輸入密碼和賬戶,并且實現(xiàn)登錄check 登錄成功之后,跳轉到第二個Activity,在其上實現(xiàn)一個入力框,根據(jù)輸入的參數(shù),到google上檢索 2. 效果圖 3. 主要代碼3.1 第一個Activity的代碼public class Android1 extends Activity private Button mButton1; private TextView mTextView1; private TextView mTextView2; private String user = new String(); private String password = new String(); private DBHelper dbHelper; /* Called when the activity is first created. */ Override public void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); setContentView(R.layout.main); mTextView1 = (TextView) findViewById(R.id.EditText01); mTextView2 = (TextView) findViewById(R.id.EditText02); dbHelper = new DBHelper(this, TestDB); createTable(); public void onClick(View v) / TODO Auto-generated method stub user = mTextView1.getText().toString(); password = mTextView2.getText().toString(); Boolean result = selectTable(user, password); Log.d(Android1, the result is + result); if (result = true) Intent intent = new Intent(); intent.setClass(Android1.this, Android2.class); startActivity(intent); public void createTable() SQLiteDatabase db = dbHelper.getWritableDatabase(); db .execSQL(create table if not exists LOG (user varchar primary key,password varchar); public boolean selectTable(String user, String password) SQLiteDatabase db = dbHelper.getWritableDatabase(); try Cursor result = db.rawQuery( select * from LOG where user = ? AND password =?, new String user, password ); Log.d(Android1, count is + result.getCount(); if (result.getCount() != 0) result.close(); db.close(); return true; else result.close(); db.close(); return false; catch (SQLException ex) Log.d(Android1, select table failure); return false; 3.2 第二個Activity的代碼public class Android2 extends Activity private TextView mTextView1; Override public void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); setContentView(R.layout.search); mTextView1 = (TextView) findViewById(R.id.EditTextSearch); public void onClick(View v) String key = mTextView1.getText().toString(); Intent search = new Intent(Intent.ACTION_WEB_SEARCH); search.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); search.putExtra(SearchManager.QUERY, key); final Bundle appData = getIntent().getBundleExtra( SearchManager.APP_DATA); if (appData != null) search.putExtra(SearchManager.APP_DATA, appData); startActivity(search); 3.3 數(shù)據(jù)庫訪問控制類public class DBHelper extends SQLiteOpenHelper / 數(shù)據(jù)庫版本 private static final int VERSION = 1; / 新建一個表 public DBHelper(Context context, String name, CursorFactory factory, int version) super(context, name, factory, version); public DBHelper(Context context, String name, int version) this(context, name, null, version); public DBHelper(Context context, String name) this(context, name, VERSION); Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) Override public void onCreate(SQLiteDatabase arg0) / TODO Auto

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論