码迷,mamicode.com
首页 > 移动开发 > 详细

Android基础TOP4:Tost的使用

时间:2017-04-08 17:28:02      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:输出   flat   cti   set   img   hello   android   技术   get   

Activity:

<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"
    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.top4.MainActivity" >

    
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

JAVA:

View view=getLayoutInflater().inflate(R.layout.activity_main,null);
            //定义一个Toast
        Toast ts=new Toast(this);
        //将该Tosat输出到 View
        ts.setView(view);
        //设置Toast时间
        ts.setDuration(2000);
        //设置Tost的位置 
        ts.setGravity(Gravity.BOTTOM|Gravity.RIGHT,20,30);
        //最后要记得加.show();不加就不会显示
        ts.show();

技术分享

 

Android基础TOP4:Tost的使用

标签:输出   flat   cti   set   img   hello   android   技术   get   

原文地址:http://www.cnblogs.com/AndroidCSY/p/6682069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!