今天開始接觸和熟悉Android上層應用,學海無涯,懸崖勒馬 -_-|| android
三種常見佈局方法:Linearlayout(線性佈局)、TableLayout?(表格佈局)、Relative Layout(相對佈局)。 web
相對佈局比起前面兩種佈局方法而言更隨意,用戶能夠將控件放在本身所但願的任何位置。
在LinearLayout和TableLayout中常見的指令有http://www.cdtarena.com
android:id——控件指定相應ID
android:text——控件中顯示文字。注意儘可能使用Strings.xml
android:gravity——控件中文字基本位置,如center、left、right、center_horizontal等。
android:textsize——控件中字體大小,單位爲pt。
android:background——控件背景色
android:width——控件寬度
android:height——控件高度
android:padding——空間內邊距,指控件當中內容到空間的距離。其中有android:padding_left、android:padding_right等。
android:siglelise——若是設置爲真,控件內容將在同一行顯示。
android:margin——外邊距。 數據庫
相對佈局Relative Layout
android:Layout_above——將控件底部至於給定控件之上
android:Layout_below——將控件頂部至於給定控件之下
android:Layout_toleftof——將控件左邊緣至於給定控件右邊
android:Layout_toRightof——將控件左邊緣至於給定控件右邊
android:Layout_alignBaseline——將控件的Baseline與指定控件的Baseline對齊。
android:Layout_alignleft——將控件的左邊與指定控件的左邊對齊。
android:Layout_alignright——將控件的右邊與指定控件右邊對齊。
android:Layout_alignTop——將控件的頂部與指定控件頂部對齊。
android:Layout_alignParentBottom——爲真,控件與父控件對齊。
android:Layout_centerHorizontal——爲真,空間被至於水平方向中央。
android:Layout_centerinParent——爲真,至於父控件水平/垂直方向中央。
android:Layout_centervertural——被置於垂直方向中央。 瀏覽器
intent-filter
1 android.intent.action.MAIN決定應用程序最早啓動的Activity。
2 android.intent.category.LAUNCHER決定應用程序是否顯示在程序列表裏。
intent調用應用程序
例子:調用Google瀏覽器
Uri uri = Uri.parse("http://www.android123.com.cn");
Intent it = new Intent(Intent.ACTION_VIEW,uri);
startActivity(it);
經常使用的應用程序調用
顯示web網頁:
1. Uri uri = Uri.parse("http://www.android123.com.cn");
2. Intent it = new Intent(Intent.ACTION_VIEW,uri);
3. startActivity(it);
顯示google地圖:
1. Uri uri = Uri.parse("geo:38.899533,-77.036476");
2. Intent it = new Intent(Intent.Action_VIEW,uri);
3. startActivity(it);
Maps路徑規劃:
1. Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
2. Intent it = new Intent(Intent.ACTION_VIEW,URI);
3. startActivity(it);
撥打電話:
1. Uri uri = Uri.parse("tel:xxxxxx");
2. Intent it = new Intent(Intent.ACTION_DIAL, uri);
3. startActivity(it);
1. Uri uri = Uri.parse("tel.xxxxxx");
2. Intent it =new Intent(Intent.ACTION_CALL,uri);
注意須要權限<uses-permission id="Android.permission.CALL_PHONE" />
發送SMS/MMS
1. Intent it = new Intent(Intent.ACTION_VIEW);
2. it.putExtra("sms_body", "android開發網歡迎您");
3. it.setType("vnd.android-dir/mms-sms");
4. startActivity(it);
發送短信
1. Uri uri = Uri.parse("smsto:10086");
2. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
3. it.putExtra("sms_body", "10086"); //正文爲10086
4. startActivity(it);
發送彩信
1. Uri uri = Uri.parse("content://media/external/images/media/10"); //該Uri根據實際狀況修改,external表明外部存儲即sdcard
2. Intent it = new Intent(Intent.ACTION_SEND);
3. it.putExtra("sms_body", "android123.com.cn");
4. it.putExtra(Intent.EXTRA_STREAM, uri);
5. it.setType("image/png");
6. startActivity(it);
發送Email
2. Uri uri = Uri.parse("mailto:android123@163.com");
3. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
4. startActivity(it);
1. Intent it = new Intent(Intent.ACTION_SEND);
2. it.putExtra(Intent.EXTRA_EMAIL, "android123@163.com");
3. it.putExtra(Intent.EXTRA_TEXT, "android開發網測試");
4. it.setType("text/plain");
5. startActivity(Intent.createChooser(it, "選擇一個Email客戶端"));
1. Intent it=new Intent(Intent.ACTION_SEND);
2. String[] tos={"android123@163.com"}; //發送到
3. String[] ccs={"ophone123@163.com"}; //抄送
4. it.putExtra(Intent.EXTRA_EMAIL, tos);
5. it.putExtra(Intent.EXTRA_CC, ccs);
6. it.putExtra(Intent.EXTRA_TEXT, "正文");
7. it.putExtra(Intent.EXTRA_SUBJECT, "標題");
8. it.setType("message/rfc822"); //編碼類型
9. startActivity(Intent.createChooser(it, "選擇一個Email客戶端"));
Email添加附件
1. Intent it = new Intent(Intent.ACTION_SEND);
2. it.putExtra(Intent.EXTRA_SUBJECT, "正文");
3. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/nobody.mp3"); //附件爲sd卡上的nobody MP3文件
4. sendIntent.setType("audio/mp3");
5. startActivity(Intent.createChooser(it, "選擇一個Email客戶端"));
播放多媒體
1.
2. Intent it = new Intent(Intent.ACTION_VIEW);
3. Uri uri = Uri.parse("file:///sdcard/nobody.mp3");
4. it.setDataAndType(uri, "audio/mp3");
5. startActivity(it);
1. Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1"); //從系統內部的MediaProvider索引中調用播放
2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
3. startActivity(it);
Uninstall卸載程序
1. Uri uri = Uri.fromParts("package", packageName, null); //packageName爲包名,好比com.android123.apkInstaller
2. Intent it = new Intent(Intent.ACTION_DELETE, uri);
3. startActivity(it); ide
進入聯繫人界面
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(People.CONTENT_URI);
startActivity(intent);
查看某個聯繫人,固然這裏是ACTION_VIEW,若是爲選擇並返回action改成ACTION_PICK,固然處理intent時返回須要用到startActivityforResult
Uri personUri = ContentUris.withAppendedId(People.CONTENT_URI, ID);//最後的ID參數爲聯繫人Provider中的數據庫BaseID,即哪一行
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(personUri);
startActivity(intent);
選擇一個圖片
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("image/*");
startActivityForResult(intent, 0);
調用Android設備的照相機,並設置拍照後存放位置
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment
.getExternalStorageDirectory().getAbsolutePath()+"/cwj", android123 + ".jpg"))); //存放位置爲sdcard卡上cwj文件夾,文件名爲android123.jpg格式
startActivityForResult(intent, 0); 佈局
自定義的Activity調用
Intent intent = new Intent();
intent.setClass(dataactivity.this, test3.class);
startActivity(intent);
要注意包的聲明和權限修改,即AndroidManifest.xml的修改! 測試