Android学习笔记(二)之电话拨号器

2019-12-10 19:51:14王振洲
  • <uses-sdk android:minSdkVersion=“6" />  <uses-permission android:name="android.permission.CALL_PHONE"/> 
  • </manifest> 

    界面布局:

     

     
    1. <?xml version="1.0" encoding="utf-8"?>  <LinearLayout xmlns:android="http://www.easck.com/apk/res/android" 
    2. android:orientation="vertical"  android:layout_width="fill_parent" 
    3. android:layout_height="fill_parent" >  <TextView  
    4. android:layout_width="fill_parent" android:layout_height="wrap_content"  android:text="@string/inputmobile"/> 
    5. <EditText android:layout_width="fill_parent" android:layout_height="wrap_content"  android:id="@+id/mobile"/> 
    6. <Button android:layout_width="wrap_content" android:layout_height="wrap_content"  android:text="@string/button" 
    7. android:id="@+id/button"/>  </LinearLayout>