我正在开发一个Android应用程序来通过gsm控制电路。该应用程序将信号作为呼叫或消息发送到连接到电路的gsm模块,该电路将根据接收到的信号中断电路。我想要的是当我点击活动中的一个按钮时,应该对代码写的特定号码进行gsm调用,但不应该调用拨号器ui 。拨号器ui需要是取代了一些进度图像几秒钟。有人请帮助我。我完成了这个项目的所有电气和电子电路,但卡在这里。请帮忙。
的AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.orveehomes"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="10" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".splash"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".main"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">"
<intent-filter>
<action android:name="com.orveehomes.main" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
main.java
package com.orveehomes;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
public class main extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void call(View view) {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white" >
<ImageView
android:id="@+id/orvee1"
android:contentDescription="@string/desc"
android:layout_width="match_parent"
android:layout_height="100dp"
android:src="@drawable/orvee1" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/btnname"
android:onClick="call" />
</LinearLayout>