Android系統調用

來源:互聯網
上載者:User

main.xml如下:

[html]
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" 
    android:gravity="center_horizontal" 
    > 
   <Button 
       android:id="@+id/callTelephoneButton" 
       android:layout_width="150dip" 
       android:layout_height="40dip" 
       android:gravity="center" 
       android:text="@string/callTelephone" 
       android:layout_marginTop="50dip" 
       android:textSize="20sp" 
       /> 
    <Button 
       android:id="@+id/browsephotosButton" 
       android:layout_width="150dip" 
       android:layout_height="40dip" 
       android:gravity="center" 
       android:text="@string/browsephotos" 
       android:layout_marginTop="50dip" 
       android:textSize="20sp" 
       /> 
     <Button 
       android:id="@+id/openBrowserButton" 
       android:layout_width="150dip" 
       android:layout_height="40dip" 
       android:gravity="center" 
       android:text="@string/openBrowser" 
       android:layout_marginTop="50dip" 
       android:textSize="20sp" 
       /> 
      <Button 
       android:id="@+id/openCameraButton" 
       android:layout_width="150dip" 
       android:layout_height="40dip" 
       android:gravity="center" 
       android:text="@string/openCamera" 
       android:layout_marginTop="50dip" 
       android:textSize="20sp" 
       /> 
    
</LinearLayout> 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:gravity="center_horizontal"
    >
   <Button
       android:id="@+id/callTelephoneButton"
       android:layout_width="150dip"
       android:layout_height="40dip"
       android:gravity="center"
       android:text="@string/callTelephone"
       android:layout_marginTop="50dip"
       android:textSize="20sp"
       />
    <Button
       android:id="@+id/browsephotosButton"
       android:layout_width="150dip"
       android:layout_height="40dip"
       android:gravity="center"
       android:text="@string/browsephotos"
       android:layout_marginTop="50dip"
       android:textSize="20sp"
       />
     <Button
       android:id="@+id/openBrowserButton"
       android:layout_width="150dip"
       android:layout_height="40dip"
       android:gravity="center"
       android:text="@string/openBrowser"
       android:layout_marginTop="50dip"
       android:textSize="20sp"
       />
      <Button
       android:id="@+id/openCameraButton"
       android:layout_width="150dip"
       android:layout_height="40dip"
       android:gravity="center"
       android:text="@string/openCamera"
       android:layout_marginTop="50dip"
       android:textSize="20sp"
       />
  
</LinearLayout>MainActivity如下:

[java]
package cn.com.bravesoft.testintent; 
import android.net.Uri; 
import android.os.Bundle; 
import android.provider.MediaStore; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.app.Activity; 
import android.content.Intent; 
/**
 * 
 *官方資料:
 *1 使用權限設定
 *  http://developer.android.com/reference/android/Manifest.permission.html
 *2 系統Intent
 *  http://developer.android.com/reference/android/content/Intent.html#ACTION_CALL
 */ 
public class MainActivity extends Activity { 
    private Button mTelephoneButton; 
    private Button mPhotosButton; 
    private Button mBrowserButton; 
    private Button mCameraButton; 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
        init(); 
    } 
    private void init(){ 
        mTelephoneButton=(Button) findViewById(R.id.callTelephoneButton); 
        mTelephoneButton.setOnClickListener(new ButtonOnClickListenerImpl()); 
        mPhotosButton=(Button) findViewById(R.id.browsephotosButton); 
        mPhotosButton.setOnClickListener(new ButtonOnClickListenerImpl()); 
        mBrowserButton=(Button) findViewById(R.id.openBrowserButton); 
        mBrowserButton.setOnClickListener(new ButtonOnClickListenerImpl()); 
        mCameraButton=(Button) findViewById(R.id.openCameraButton); 
        mCameraButton.setOnClickListener(new ButtonOnClickListenerImpl()); 
    } 
    private class ButtonOnClickListenerImpl implements OnClickListener{ 
        @Override 
        public void onClick(View v) { 
            switch (v.getId()) { 
            case R.id.callTelephoneButton: 
                //撥打到電話  
                Intent telephoneIntent=new Intent(); 
                telephoneIntent.setAction("android.intent.action.CALL"); 
                telephoneIntent.setData(Uri.parse("tel:"+"150028068")); 
                startActivity(telephoneIntent); 
                break; 
            case R.id.browsephotosButton: 
                //查看圖片  
                Intent galleryIntent=new Intent(); 
                galleryIntent.setAction(Intent.ACTION_GET_CONTENT); 
                galleryIntent.setType("image/*"); 
                startActivity(galleryIntent); 
                break; 
            case R.id.openBrowserButton: 
                 //開啟瀏覽器  
                 Intent browserIntent=new Intent(); 
                 browserIntent.setAction(Intent.ACTION_VIEW); 
                 browserIntent.setData(Uri.parse("http://www.ifeng.com")); 
                 startActivity(browserIntent); 
                break; 
            case R.id.openCameraButton: 
                //開啟照相機  
                Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);   
                startActivity(cameraIntent); 
                break; 
 
            default: 
                break; 
            } 
        } 
         
    } 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.