android 的常标签和方法 android 初学者

大家还是去:http://rubyrails.iteye.com/blog/289967

他那边的代码有排板过.

 

按钮:

<Button android:id="@+id/jump"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="button to"
    />
 

 

显示文本

 

<TextView android:id="@+id/result"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text=""
    />
 

编辑框:

 

<EditText android:id="@+id/height"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:numeric="integer"
    android:text=""
    />
 

 

支持多行:

<EditText id="@+id/Text1"
android:layout_width="200sp"
android:layout_height="24sp"
android:text="Text1"
android:singleLine="True"
/>
<EditText id="@+id/text3"
android:layout_width="180px"
android:layout_height="80px"
android:text="Text3 width='180px' android:singleLine='False'"
android:singleLine="False"
/>
 

 

 

 多看帮助文档

 

两种小提示信看

    第一种:
    
     Toast.makeText(Calculator.this, "The buttonface was 1.", Toast.LENGTH_SHORT).show();
    
    第二种
    
     private void openOptionsDialog() {
         new AlertDialog.Builder(this)
         .setTitle("weight / (height * height) is :" + BMI)
         .setMessage("Android BMI Calc")
         .show();
     }
    
       openOptionsDialog();
    
    

     

    你可能感兴趣的:(android,Blog)