Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选 PDF转换器

首页 / 操作系统 / Linux / Android应用开发:短信发送器

效果图:界面布局:
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7.     <!--显示控件-->  
  8.     <TextView    
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     android:text="@string/moblie"  
  12.     />  
  13.     <!--文本框按钮-->  
  14.     <EditText  
  15.     android:layout_width="fill_parent"   
  16.     android:layout_height="wrap_content"  
  17.     android:id="@+id/moblie"  
  18.     />  
  19.     <TextView    
  20.     android:layout_width="fill_parent"   
  21.     android:layout_height="wrap_content"   
  22.     android:text="@string/content"  
  23.     />  
  24.     <EditText  
  25.     android:layout_width="fill_parent"   
  26.     android:layout_height="wrap_content"  
  27.     android:minLines="3"  
  28.     android:id="@+id/content"  
  29.     />  
  30.     <Button  
  31.     android:layout_width="wrap_content"   
  32.     android:layout_height="wrap_content"  
  33.     android:text="@string/button"  
  34.     android:id="@+id/button"  
  35.     />  
  36. </LinearLayout>