❶ android源碼問題,撥打完電話會更新通話記錄列表,通過一個監聽來實現查詢CallLogProvider,有了解的嗎
能否將詳細log貼上
這個是2.3 系統還是 4.0 的 還是?
05-09 18:18:36.519: E/DatabaseUtils(393): at android.database.sqlite.SQLiteQueryBuilder.computeProjection(SQLiteQueryBuilder.java:588)
05-09 18:18:36.519: E/DatabaseUtils(393): at android.database.sqlite.SQLiteQueryBuilder.buildQuery(SQLiteQueryBuilder.java:403)
後面的log也多貼一些。
❷ Android怎麼實現打電話源碼
Activity對應的xml的布局
<RelativeLayout xmlns:android="schemas.android.com/apk/res/android" ,前面加上http xmlns:tools="schemas.android.com/tools" 前面加上http
android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" >
<EditText android:id="@+id/telNo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginLeft="25dp" android:layout_marginTop="26dp" />
<Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/telNo" android:layout_below="@+id/telNo" android:layout_marginTop="37dp" android:text="Button" />
</RelativeLayout>
主項目裡面的Activity裡面的方法,注意,添加命名空間
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button btn = (Button)findViewById(R.id.btn); final EditText phoneNoText = (EditText)findViewById(R.id.telNo); btn.setOnClickListener(new View.OnClickListener() { public void onClick(View arg0) { String telNo = phoneNoText.getText().toString(); if((telNo!=null)&&(!"".equals(telNo.trim()))){ Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+telNo)); startActivity(intent); } } }); }
在AndroidManifest.xml裡面修改關鍵部分。
<uses-permission android:name="android.permission.CALL_PHONE"/>
上述功能是准許用戶,可以執行,撥號功能,這是必不可少的,沒有的話,會包異常。
❸ android語音聊天室示例源碼哪裡有
網上 應該 可以找到android語音聊天室示例源碼,一般搜互聯網公司巨頭的官網就行,上面有很多SDK品類的,我安利一個ZEGO即構科技給你吧,它上面有實力源碼可以下載使用的,還支持90天的試用。
❹ android 電話薄的 通話記錄是怎麼實現的,求教高手,若有源代碼 能否給一份,非常感謝
這個東西我感覺還是去android開發論壇找找吧...那裡資源豐富..就算找不到還可以發帖提問找。機會比在這里大得多。 給你推薦一個cmd100論壇吧。邀請鏈接給你留言了。注意查收。
❺ android5.1.1源碼 撥打電話選卡怎麼實現的
Activity對應的xml的布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" >
<EditText android:id="@+id/telNo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginLeft="25dp" android:layout_marginTop="26dp" />
<Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/telNo" android:layout_below="@+id/telNo" android:layout_marginTop="37dp" android:text="Button" />
</RelativeLayout>
主項目裡面的Activity裡面的方法,注意,添加命名空間
@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Button btn = (Button)findViewById(R.id.btn);final EditText phoneNoText = (EditText)findViewById(R.id.telNo); btn.setOnClickListener(new View.OnClickListener() { public void onClick(View arg0) { String telNo = phoneNoText.getText().toString(); if((telNo!=null)&&(!"".equals(telNo.trim()))){ Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+telNo)); startActivity(intent); } } }); }
在AndroidManifest.xml裡面修改關鍵部分。
<uses-permission android:name="android.permission.CALL_PHONE"/>
上述功能是准許用戶,可以執行,撥號功能,這是必不可少的,沒有的話,會包異常,不能正常運行應用程序。
如下圖,所示
❻ 跪求android原生通訊錄的源碼
不錯不錯。。。。。。。。。
❼ 請問誰有開發Android系統語音通話的源碼或者可行的開發思路。謝謝!
andriod的原生代碼不就是可以通話的么?就是google發布的那些就可以的呀 不同手機只是底層的硬體驅動不一樣而已吧 如果是要這個的話 不同硬體也不同的 你也不能用不是?
❽ android 獲取電話的所有電話的源代碼 只要獲取所有的 電話號碼和姓名
不是系統的電話本?
那自己使用sqlite存儲,網路 android sqlite 用法