当我们需要获取string.xml中的字符串key时,我们可以:
-
代码中通过R.string.key获取该字符串的引用。
-
在xml布局文件中通过@string/key获取该字符串的引用。
名称 | 作用 |
---|---|
onSavedInstanceState(Bundle outState) | |
getTaskId() | Activity方法,用于获取当前活动所属栈编号。 |
getClass().getSimpleName() | 获取该类名称 |
安卓控件的可见属性
xml:
android:visibility="visible|invisible|gone"
visible:可见.
invisible:控件不可见但仍然占据原来位置大小.
gone:控件隐藏并不再占据空间大小.
java:
setVisibility(View.VISIBLE|View.INVISIBLE|View.GONE);
(1) android.app.PendingIntent.FLAG_UPDATE_CURRENT
如果PendingIntent已经存在,保留它并且只替换它的extra数据。
(2) android.app.PendingIntent.FLAG_CANCEL_CURRENT
(3) android.app.PendingIntent.FLAG_ONE_SHOT
PendingIntent只能使用一次。调用了实例方法send()之后,它会被自动cancel掉,再次调用send()方法将失败。
(4) android.app.PendingIntent.FLAG_NO_CREATE
如果PendingIntent不存在,简单了当返回null。
网友评论