Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 737|回复: 0

Android---UI篇---Toast(提示)-  Android学习

[复制链接]

该用户从未签到

发表于 2011-10-24 15:09:53 | 显示全部楼层 |阅读模式
Toast用于向用户显示一些帮助/提示。下面我做了5中效果,来说明Toast的强大,定义一个属于你自己的Toast。
注意:

LENGTH_LONG---长时间显示视图或文本提示
LENGTH_SHORT---短时间显示视图或文本提示
setGravity(int gravity,int xOffset,int yOffset)---设置提示应该在屏幕上的显示的位置
setDuration(int duartion)---设置提示显示的持续时间

1.默认效果


代码
Toast.makeText(getApplicationContext(), "默认Toast样式",
     Toast.LENGTH_SHORT).show();

2.自定义显示位置效果


代码
toast = Toast.makeText(getApplicationContext(),
     "自定义位置Toast", Toast.LENGTH_LONG);
   toast.setGravity(Gravity.CENTER, 0, 0);
   toast.show();

3.带图片效果



代码
toast = Toast.makeText(getApplicationContext(),

     "带图片的Toast", Toast.LENGTH_LONG);

   toast.setGravity(Gravity.CENTER, 0, 0);

   LinearLayout toastView = (LinearLayout) toast.getView();

   ImageView imageCodeProject = new ImageView(getApplicationContext());

   imageCodeProject.setImageResource(R.drawable.icon);

   toastView.addView(imageCodeProject, 0);

   toast.show();
复制代码4.完全自定义效果


代码
LayoutInflater inflater = getLayoutInflater();

   View layout = inflater.inflate(R.layout.custom,

     (ViewGroup) findViewById(R.id.llToast));

   ImageView image = (ImageView) layout

     .findViewById(R.id.tvImageToast);

   image.setImageResource(R.drawable.icon);

   TextView title = (TextView) layout.findViewById(R.id.tvTitleToast);

   title.setText("Attention");

   TextView text = (TextView) layout.findViewById(R.id.tvTextToast);

   text.setText("完全自定义Toast");

   toast = new Toast(getApplicationContext());

   toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40);

   toast.setDuration(Toast.LENGTH_LONG);

   toast.setView(layout);

   toast.show();
复制代码5.其他线程


代码
new Thread(new Runnable() {

    public void run() {

     showToast();

    }

   }).start();
复制代码完整代码1.Main,java

package com.wjq.toast;

import android.app.Activity;

import android.os.Bundle;

import android.os.Handler;

import android.view.Gravity;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.view.View.OnClickListener;

import android.widget.ImageView;

import android.widget.LinearLayout;

import android.widget.TextView;

import android.widget.Toast;

public class Main extends Activity implements OnClickListener {

Handler handler = new Handler();

@Override

public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentView(R.layout.main);

  findViewById(R.id.btnSimpleToast).setOnClickListener(this);

  findViewById(R.id.btnSimpleToastWithCustomPosition).setOnClickListener(

    this);

  findViewById(R.id.btnSimpleToastWithImage).setOnClickListener(this);

  findViewById(R.id.btnCustomToast).setOnClickListener(this);

  findViewById(R.id.btnRunToastFromOtherThread).setOnClickListener(this);

}

public void showToast() {

  handler.post(new Runnable() {

   @Override

   public void run() {

    Toast.makeText(getApplicationContext(), "我来自其他线程!",

      Toast.LENGTH_SHORT).show();

   }

  });

}

@Override

public void onClick(View v) {

  Toast toast = null;

  switch (v.getId()) {

  case R.id.btnSimpleToast:

   Toast.makeText(getApplicationContext(), "默认Toast样式",

     Toast.LENGTH_SHORT).show();

   break;

  case R.id.btnSimpleToastWithCustomPosition:

   toast = Toast.makeText(getApplicationContext(),

     "自定义位置Toast", Toast.LENGTH_LONG);

   toast.setGravity(Gravity.CENTER, 0, 0);

   toast.show();

   break;

  case R.id.btnSimpleToastWithImage:

   toast = Toast.makeText(getApplicationContext(),

     "带图片的Toast", Toast.LENGTH_LONG);

   toast.setGravity(Gravity.CENTER, 0, 0);

   LinearLayout toastView = (LinearLayout) toast.getView();

   ImageView imageCodeProject = new ImageView(getApplicationContext());

   imageCodeProject.setImageResource(R.drawable.icon);

   toastView.addView(imageCodeProject, 0);

   toast.show();

   break;

  case R.id.btnCustomToast:

   LayoutInflater inflater = getLayoutInflater();

   View layout = inflater.inflate(R.layout.custom,

     (ViewGroup) findViewById(R.id.llToast));

   ImageView image = (ImageView) layout

     .findViewById(R.id.tvImageToast);

   image.setImageResource(R.drawable.icon);

   TextView title = (TextView) layout.findViewById(R.id.tvTitleToast);

   title.setText("Attention");

   TextView text = (TextView) layout.findViewById(R.id.tvTextToast);

   text.setText("完全自定义Toast");

   toast = new Toast(getApplicationContext());

   toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40);

   toast.setDuration(Toast.LENGTH_LONG);

   toast.setView(layout);

   toast.show();

   break;

  case R.id.btnRunToastFromOtherThread:

   new Thread(new Runnable() {

    public void run() {

     showToast();

    }

   }).start();

   break;

  }

}

}


复制代码2.main,xml <?xml version="1.0" encoding="utf-8"?>

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

androidrientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent" android:padding="5dip" android:gravity="center">

<Button android:layout_height="wrap_content"

  android:layout_width="fill_parent" android:id="@+id/btnSimpleToast"

  android:text="默认"></Button>

<Button android:layout_height="wrap_content"

  android:layout_width="fill_parent" android:text="自定义显示位置"

  android:id="@+id/btnSimpleToastWithCustomPosition"></Button>

<Button android:layout_height="wrap_content"

  android:layout_width="fill_parent" android:id="@+id/btnSimpleToastWithImage"

  android:text="带图片"></Button>

<Button android:layout_height="wrap_content"

  android:layout_width="fill_parent" android:text="完全自定义"

  android:id="@+id/btnCustomToast"></Button>

<Button android:layout_height="wrap_content"

  android:layout_width="fill_parent" android:text="其他线程"

  android:id="@+id/btnRunToastFromOtherThread"></Button>

</LinearLayout>


复制代码3.custom.xml <?xml version="1.0" encoding="utf-8"?>

<LinearLayout

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

android:layout_height="wrap_content" android:layout_width="wrap_content"

android:background="#ffffffff" android:orientation="vertical"

android:id="@+id/llToast" >

<TextView

  android:layout_height="wrap_content"

  android:layout_margin="1dip"

  android:textColor="#ffffffff"

  android:layout_width="fill_parent"

  android:gravity="center"

  android:background="#bb000000"

  android:id="@+id/tvTitleToast" />

<LinearLayout

  android:layout_height="wrap_content"

  android:orientation="vertical"

  android:id="@+id/llToastContent"

  android:layout_marginLeft="1dip"

  android:layout_marginRight="1dip"

  android:layout_marginBottom="1dip"

  android:layout_width="wrap_content"

  android:padding="15dip"

  android:background="#44000000" >

  <ImageView

   android:layout_height="wrap_content"

   android:layout_gravity="center"

   android:layout_width="wrap_content"

   android:id="@+id/tvImageToast" />

  <TextView

   android:layout_height="wrap_content"

   android:paddingRight="10dip"

   android:paddingLeft="10dip"

   android:layout_width="wrap_content"

   android:gravity="center"

   android:textColor="#ff000000"

   android:id="@+id/tvTextToast" />

</LinearLayout>

</LinearLayout>


复制代码
回复

使用道具 举报

该用户从未签到

发表于 2011-10-24 15:09:56 | 显示全部楼层

Re:Android---UI

学习, up
回复 支持 反对

使用道具 举报

该用户从未签到

发表于 2011-10-24 15:10:04 | 显示全部楼层

Re:Android---UI

perfect
回复 支持 反对

使用道具 举报

该用户从未签到

发表于 2011-10-24 15:10:10 | 显示全部楼层

Re:Android---UI

学习中。。。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-11 14:12 , Processed in 0.309300 second(s), 36 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表