Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android開發入門(四)發送通知 4.1 Toast通知

Android開發入門(四)發送通知 4.1 Toast通知

編輯:Android開發教程

Toast通知是Android中最簡單的消息通知。接下來展示如何使用吐司通知。

1. 新建一個工程, Toast。

2. main.xml中的代碼。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" >     
         
    <Button     
        android:id="@+id/button" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_centerHorizontal="true" 
        android:layout_centerVertical="true" 
        android:padding="@dimen/padding_medium" 
        android:text="@string/hello_world" />     
         
</RelativeLayout>

3. MainActivity.java中的代碼。

public class MainActivity extends Activity {     
    private Button button;     
         
    @Override 
    public void onCreate(Bundle savedInstanceState) {     
        super.onCreate(savedInstanceState);     
        setContentView(R.layout.main);     
        button = (Button) findViewById(R.id.button);     
        button.setOnClickListener(new OnClickListener() {     
         
            @Override 
            public void onClick(View v) {     
                Toast.makeText(getBaseContext(), "Hi, I am a Toast Message.",     
                        Toast.LENGTH_SHORT).show();     
            }     
        });     
    }     
         
}

4. 按F11在模擬器上面調試。點擊中心的按鈕,就會彈出吐司通知了。

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved