Click here to Skip to main content
15,886,110 members
Home / Discussions / Android
   

Android

 
SuggestionRe: probleme l'hors d'installation des packages android SDK manager Pin
Richard MacCutchan5-Feb-15 22:05
mveRichard MacCutchan5-Feb-15 22:05 
Questiondisplay image from remote sqlserver db in Android Pin
Member 5933975-Feb-15 0:58
Member 5933975-Feb-15 0:58 
AnswerRe: display image from remote sqlserver db in Android Pin
Richard MacCutchan5-Feb-15 2:46
mveRichard MacCutchan5-Feb-15 2:46 
SuggestionRe: display image from remote sqlserver db in Android Pin
David Crow5-Feb-15 4:04
David Crow5-Feb-15 4:04 
Questionmobile commerce android Pin
Member 114251573-Feb-15 16:39
Member 114251573-Feb-15 16:39 
AnswerRe: mobile commerce android Pin
Richard MacCutchan3-Feb-15 23:02
mveRichard MacCutchan3-Feb-15 23:02 
QuestionSmall App Help Pin
Asimmmm24-Jan-15 5:10
Asimmmm24-Jan-15 5:10 
AnswerRe: Small App Help Pin
Vidyasagar Patro7-Feb-15 7:03
Vidyasagar Patro7-Feb-15 7:03 
Try this.
Use this in your manifest permissions:
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>


And in your activity use this:

C#
Button new_button= (Button)findViewById(R.id.button_id);//check the button id in your layout xml 
new_button.setOnClickListener(new View.OnClickListener() {
     public void onClick(View v) {
     
    Intent callIntent = new Intent(Intent.ACTION_CALL);
    String tel_number= "tel:"+"*123*03401234567*"+AMOUNT+"#";
    callIntent.setData(Uri.parse(tel_number));
    startActivity(callIntent);

      }
   });


Hope it helps. Please mark it correct if it is.
Thanks

QuestionBeginning out. Suggestions, help, direction. Pin
Member 1139206621-Jan-15 6:31
Member 1139206621-Jan-15 6:31 
AnswerRe: Beginning out. Suggestions, help, direction. Pin
Member 1036419227-Jan-15 1:03
Member 1036419227-Jan-15 1:03 
AnswerRe: Beginning out. Suggestions, help, direction. Pin
Richard MacCutchan27-Jan-15 2:34
mveRichard MacCutchan27-Jan-15 2:34 
Questionfinding an android application developer Pin
Member 1137462014-Jan-15 2:20
Member 1137462014-Jan-15 2:20 
AnswerRe: finding an android application developer Pin
Richard MacCutchan14-Jan-15 3:57
mveRichard MacCutchan14-Jan-15 3:57 
QuestionEmotion Based Android app Pin
Member 1137002712-Jan-15 9:26
Member 1137002712-Jan-15 9:26 
SuggestionWhat kind of suggestions can you give to a beginner in android app developement? Pin
Tiffany_Summers10-Jan-15 13:30
Tiffany_Summers10-Jan-15 13:30 
AnswerRe: What kind of suggestions can you give to a beginner in android app developement? Pin
Kornfeld Eliyahu Peter10-Jan-15 20:23
professionalKornfeld Eliyahu Peter10-Jan-15 20:23 
GeneralRe: What kind of suggestions can you give to a beginner in android app developement? Pin
Member 1036419227-Jan-15 1:05
Member 1036419227-Jan-15 1:05 
GeneralRe: What kind of suggestions can you give to a beginner in android app developement? Pin
Richard MacCutchan10-Jan-15 21:42
mveRichard MacCutchan10-Jan-15 21:42 
QuestionMp3 Cutter Android Coding Pin
Ranjithkumar .8-Jan-15 21:44
Ranjithkumar .8-Jan-15 21:44 
AnswerRe: Mp3 Cutter Android Coding Pin
Richard MacCutchan9-Jan-15 4:05
mveRichard MacCutchan9-Jan-15 4:05 
QuestionAndroid crash when app is high score menu opened Pin
Member 113605017-Jan-15 20:40
Member 113605017-Jan-15 20:40 
AnswerRe: Android crash when app is high score menu opened Pin
Richard MacCutchan7-Jan-15 23:00
mveRichard MacCutchan7-Jan-15 23:00 
GeneralRe: Android crash when app is high score menu opened Pin
Member 113605018-Jan-15 0:01
Member 113605018-Jan-15 0:01 
GeneralRe: Android crash when app is high score menu opened Pin
Richard MacCutchan8-Jan-15 0:09
mveRichard MacCutchan8-Jan-15 0:09 
GeneralRe: Android crash when app is high score menu opened Pin
Member 113605018-Jan-15 0:12
Member 113605018-Jan-15 0:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.