編輯:關於Android編程
Intent可以傳一個對象
當兩個界面之間跳轉時,需要傳遞一個對象過去,是通過使用Bundle類,並且實體類需要serializable實現序列化,傳遞方法如下:
定義一個靜態常量作為key值
public final static String SER_KEY="com.xiaoshu.worker";
Intent intent=new Intent();
intent.setClass(WorkerActivity.this,DisplayWorker.class);
Bundle bundle = new Bundle();
bundle.putSerializable(SER_KEY, worker);
intent.putExtras(bundle);
startActivity(intent);
在另一個界面,接收通過intent傳遞過來的對象。接收方法如下
Worker worker = (Worker) getIntent().getSerializableExtra(WorkerActivity.SER_KEY);
/**
* 1.建一個類MyProvide ,繼承ContentProvider ,實現四個方法,需要注冊。在activity中調用。
* 注冊如下:
<provider android:name=".MyProvide" android:authorities="www.android1.com.cn"></provider>
*
* 2.通過一個監聽按鈕獲得MyProvide 解析器在另一個MainActivity 中。
*ContentResolver resolver=MainActivity.this.getContentResolver();//監聽時,獲取共享數據,一個查詢一個插入
*Uri uri=Uri.parse("content://www.android1.com.cn");//uri代表資源地址
*resolver.query(uri,null,null,null);查詢
*ContentValues values=new ContentValues();//插入放一個對象進去,因為insert方法需要傳一個values值。
*resolver.insert(uri,values);
*
*******************執行數據庫的操作MainActivity ************************
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button=(Button) findViewById(R.id.sss_sss);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
//獲得內容解析對象resolver,通過這個對象,對數據庫進行操作
ContentResolver resolver=MainActivity.this.getContentResolver();
Uri uri=Uri.parse("content://www.android1.com.cn");
resolver.query(uri, null, null, null, null);
ContentValues values=new ContentValues();
values.put("name", "zhaoshan");
resolver.insert(uri, values);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
*******************************************************************************
/*內提需要注冊 <provider android:name=".MyProvide" android:authorities="www.android1.com.cn"></provider>
* 內容提供者和數據庫綁定,其它程序不可記問本程序的數據庫,但可以通過內容提代者訪問數據庫。
*/
public class MyProvide extends ContentProvider {
SQLiteDatabase db = null;
@Override
public boolean onCreate() {
// 實例化數據庫
MyDBHelper helper = new MyDBHelper(this.getContext());
db = helper.getWritableDatabase();
return true;
}
@Override
public Cursor query(Uri uri, String[] projection, String selection,
String[] selectionArgs, String sortOrder) {
// 查詢數據庫,返回一個游標值。
return db.query("Users", projection, selection, selectionArgs, null,
null, sortOrder);
}
@Override
public Uri insert(Uri uri, ContentValues values) {
db.insert("Users", "_id", values);
return uri;
}
@Override
public int delete(Uri uri, String selection, String[] selectionArgs) {
return db.delete("Users", selection, selectionArgs);
}
@Override
public int update(Uri uri, ContentValues values, String selection,
String[] selectionArgs) {
int s = db.update("Users", values, selection, selectionArgs);
return s;
}
@Override
public String getType(Uri uri) {
return null;
}
}
//*************創建數據庫szt**************************
public class MyDBHelper extends SQLiteOpenHelper {
public MyDBHelper(Context context) {
super(context, "szt.db", null, 1);
}
@Override
public void onCreate(SQLiteDatabase db) {
// 創建一個數據表Users
db.execSQL("create table Users(_id integer primary key autoincrement,name text)");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
}
}
*******************************************************************************
/**測試其它應用程序的數據
* 首先知道其它程序的共享參數,這個是繼承ContentProvider共享參數類的注冊格式:
* <provider android:name=".MyProvide" android:authorities="www.android1.com.cn"></provider>
* 1.TestMyProvide測試類首先在資源文件中添加權限在Instrumentation-->add---->name--->android.test.InstrumentationTestRunner
* ---->Target package--->com.example.testprovider 包名
* 2. 注冊測試資源文件
* <application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.testprovider.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="android.test.runner"/>//加入這個固定格式
</application>
*
*3.注冊完後,本類,繼承AndroidTestCase類,重寫測試數據庫的方法,方法名以test開頭的。
* 在outline模式下,出現TestMyProvide類下的五個方法setUp();
* testInsert();
* testQuery();
* testdelete();
* testUpdate();
* 選中一個方法,點擊右鍵--->Run As--->Android jUnit Test運行方法
* 在MyProvide類下,在data--date--包名--導出數據庫後,查看數據庫
*/
public class TestMyProvide extends AndroidTestCase {
ContentResolver resolver = null;
@Override
protected void setUp() throws Exception {
resolver = this.getContext().getContentResolver();
super.setUp();
}
public void testInsert(){
ContentValues values = new ContentValues();
values.put("name", "wangchenghua");
resolver.insert(Uri.parse("content://www.android1.com.cn"), values);
Log.i("msg", "wangchenghua");
}
public void testQuery(){
Cursor c = resolver.query(Uri.parse("content://www.android1.com.cn"), null, null, null, null);
while(c.moveToNext()){
Log.i("msg", c.getString(c.getColumnIndex("name")));
}
c.close();
}
public void testdelete(){
resolver.delete(Uri.parse("content://www.android1.com.cn"), "_id = ?", new String[]{String.valueOf(1)});
}
public void testUpdate(){
ContentValues values = new ContentValues();
values.put("name", "wangxiaoou");
resolver.update(Uri.parse("content://www.android1.com.cn"), values, "_id = ?", new String[]{String.valueOf(4)});
}
}
在最近的兩個項目中,項目需求要求我們實現 /*登陸頁面的內容能夠隨著鍵盤的彈出而被頂上去,避免鍵盤遮擋住登陸按鈕*/ 這樣的效果,寶寶心裡苦呀,本來半天搞定的事還非得折騰
本文為大家分享Android自定義Spinner適配器的相關知識點,供大家參考,具體內容如下一、大致效果二.關鍵代碼在注釋中講重點吧。 (1)Spinner的布局: ca
Location Strategies注:本指南中描述的策略適用於平台定位API中android.location。該谷歌位置服務API,谷歌Play的一部分服務,提供了
先看看效果圖吧實現這樣的效果,你要知道貝塞爾曲線,何謂貝塞爾曲線?先在這裡打個問號下面就直接寫了1.activity_main.xml<RelativeLayout