
Android
Jeff-HT-Lee
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android从XML中创建View
LayoutInflater inflater = (LayoutInflater)context.getSystemService( Context.LAYOUT_INFLATER_SERVICE);View view = inflater.inflate(R.layout.your_view_id, null);转载 2012-01-30 16:07:52 · 3736 阅读 · 0 评论 -
@" and "+" in the Android layout file
<TextView android:id="@+id/text1" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"/>The @ symbol me原创 2012-01-30 16:29:32 · 578 阅读 · 0 评论 -
Is there any widget lifecycle events
No. An AppWidgetProvider is a manifest-registered BroadcastReceiver. A manifest-registered BroadcastReceiver lives only so long as does its onReceive() call. Nothing that lives outside of that scope.转载 2012-02-06 16:20:28 · 571 阅读 · 0 评论 -
RxJava随记
这段时间也想写一些关于RxJava的Blog,把一些零散的Code记录下来,也算是一个学习过程。这是一个有关延时、等待的例子原创 2015-12-17 11:17:23 · 800 阅读 · 0 评论 -
Android中使用Streams的两种方法
最近的两个项目中都使用了Streams函数,一个使用了Java8,另外的是Kotlin,做一下简单的笔记。原创 2016-01-05 10:04:39 · 8038 阅读 · 1 评论