亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android消息通知Totast的實現

發布時間:2020-07-27 22:14:33 來源:網絡 閱讀:514 作者:jiangguocui 欄目:移動開發
  1. 首先新建一個Android程序

  2. activity_main 文件的代碼如下

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

        xmlns:tools="http://schemas.android.com/tools"

        android:orientation="vertical"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:paddingBottom="@dimen/activity_vertical_margin"

        android:paddingLeft="@dimen/activity_horizontal_margin"

        android:paddingRight="@dimen/activity_horizontal_margin"

        android:paddingTop="@dimen/activity_vertical_margin"

        tools:context="com.example.toast.MainActivity" >


        <Button

            android:id="@+id/totastshort"

            android:layout_width="fill_parent"

            android:layout_height="wrap_content"

            android:text="按鈕1" />


        <Button

            android:id="@+id/totastlong"

            android:layout_width="fill_parent"

            android:layout_height="wrap_content"

            android:text="long" />


    </LinearLayout>

  3. MainActivity.java文件的代碼如下


    package com.example.toast;


    import android.app.Activity;

    import android.os.Bundle;

    import android.view.Gravity;

    import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

import android.widget.Button;

import android.widget.ImageView;

import android.widget.Toast;


public class MainActivity extends Activity {


private Button totast1;

private Button totast2;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

totast1=(Button) findViewById(R.id.totastshort);

totast1.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View arg0) {

// TODO Auto-generated method stub

Toast t=Toast.makeText(MainActivity.this,"hello my first short totast",Toast.LENGTH_SHORT);

t.setGravity(Gravity.CENTER, -10, 0);

t.show();

}

});

totast2=(Button) findViewById(R.id.totastlong);

totast2.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View arg0) {

// TODO Auto-generated method stub

Toast t1=Toast.makeText(MainActivity.this, "long totast",Toast.LENGTH_LONG);

ImageView i=new ImageView(MainActivity.this);

i.setImageResource(R.drawable.ic_launcher);

t1.setView(i);

t1.show();

}

} );

}


}

4.注意:最后不要忘記totast的show().


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

肇州县| 长泰县| 崇左市| 铜陵市| 孝感市| 宜丰县| 梨树县| 临湘市| 运城市| 彭水| 连平县| 深泽县| 宣汉县| 青河县| 江津市| 孟村| 东源县| 托克逊县| 尼勒克县| 海淀区| 满洲里市| 鹤壁市| 易门县| 宜宾市| 阿勒泰市| 贵定县| 湘阴县| 西峡县| 湘西| 郯城县| 井冈山市| 阿巴嘎旗| 察隅县| 灵山县| 甘德县| 历史| 绵竹市| 池州市| 洛隆县| 固镇县| 安仁县|