Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> 基於Android CALL && SendMes Test的相關介紹

基於Android CALL && SendMes Test的相關介紹

編輯:Android開發實例

Intent:當找到與設置的Intent限制相同的Activity時候通過startActivity()就會啟動該Activity
電話播號器:
intent.setAction("android.intent.action.CALL");
intent.addCategory("android.intent.category.DEFAULT");
intent.setData(Uri.parse("tel:" + strmobile));
startActivity(intent);//方法內部會自動為Intent添加類別:android.intent.category.DEFAULT

短信發送器:
SmsManager manager = SmsManager.getDefault();
ArrayList<String> texts = manager.divideMessage(comtent);
for (String text : texts) {
manager.sendTextMessage(number, null, text, null, null);// 4和5參數分別為短信發送狀態,對方是否收到短信狀態;
}
Toast.makeText(getApplicationContext(),R.string.success,Toast.LENGTH_LONG).show();
吐西對話框// Toast.makeText(MainActivity.this, resId, duration);//內部類訪問外部類;

****************************************************************

findViewById(R.id.button);// 根據id查找顯示控件;
View.OnClickListener() {
@Override
public void onClick(View arg0) {
//arg0 就是被點擊的對象
}
}

@+id/button:在R文件的id內部類裡面,添加一個id為button的常量,使用該常量的值作為此控件的id值;
@android:表示訪問android包下的R文件;
@id/label:表示訪問id為label的文件;(相對布局)

單元測試:
繼承類:AndroidTestCase
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.hellokity" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<uses-library android:name="android.test.runner" />
</application>

actual = function();
Assert.assertEquals(3,actual);判斷actual是否為3;

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved