toast的典型用法
程序员文章站
2022-07-13 12:36:13
...
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.notify_with_text); Button button; button = (Button) findViewById(R.id.short_notify); button.setOnClickListener(new Button.OnClickListener() { public void onClick(View v) { Toast.makeText(NotifyWithText.this, R.string.short_notification_text, Toast.LENGTH_SHORT).show(); } }); button = (Button) findViewById(R.id.long_notify); button.setOnClickListener(new Button.OnClickListener() { public void onClick(View v) { Toast.makeText(NotifyWithText.this, R.string.long_notification_text, Toast.LENGTH_LONG).show(); } }); }
toast的典型用法
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <Button android:id="@+id/short_notify" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/notify_with_text_short_notify_text" /> <Button android:id="@+id/long_notify" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/notify_with_text_long_notify_text" /> </LinearLayout>
上一篇: Oracle 归档日志模式切换及手工归档
下一篇: Oracle job用法小结
推荐阅读
-
SQL中distinct 和 row_number() over() 的区别及用法
-
MySQL中使用replace、regexp进行正则表达式替换的用法分析
-
详解vue使用插槽分发内容slot的用法
-
iOS中UIScrollerView的用法及基于AotoLayout的控件悬停
-
iOS App开发中Masonry布局框架的基本用法解析
-
基于android背景选择器selector的用法汇总
-
从源码解析Python的Flask框架中request对象的用法
-
Python的pycurl包用法简介
-
C#中datagridview的EditingControlShowing事件用法实例
-
Android中的Selector的用法详解及实例