中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

老河口市| 南开区| 炎陵县| 玛曲县| 江口县| 镶黄旗| 石泉县| 达拉特旗| 江川县| 徐水县| 仲巴县| 怀安县| 常宁市| 温宿县| 瑞昌市| 松原市| 云安县| 当雄县| 甘南县| 信宜市| 蓬安县| 溆浦县| 合肥市| 宁乡县| 德化县| 临猗县| 拉孜县| 德州市| 岳西县| 湘西| 资中县| 甘南县| 阿巴嘎旗| 福泉市| 方正县| 平罗县| 永川市| 黄大仙区| 揭东县| 保定市| 青州市|