Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/facebook/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
哪种类型的Android小部件Google+;Facebook是否使用他们的订阅源?_Android_Facebook_Listview_Google Plus - Fatal编程技术网

哪种类型的Android小部件Google+;Facebook是否使用他们的订阅源?

哪种类型的Android小部件Google+;Facebook是否使用他们的订阅源?,android,facebook,listview,google-plus,Android,Facebook,Listview,Google Plus,有人知道这些应用程序使用哪个小部件作为提要吗?它看起来像一个自定义的ListView和HTML混合在一起。我想知道我们怎样才能做出类似的东西?这是一个非常有趣的问题。它们使用自定义列表项,最有趣的部分是带有链接的TextView。以下是我的发现: TextView textView = (TextView) findViewById(R.id.my_text_view); textView.setMovementMethod(LinkMovementMethod.getInstance());

有人知道这些应用程序使用哪个小部件作为提要吗?它看起来像一个自定义的
ListView
HTML
混合在一起。我想知道我们怎样才能做出类似的东西?

这是一个非常有趣的问题。它们使用自定义列表项,最有趣的部分是带有链接的TextView。以下是我的发现:

TextView textView = (TextView) findViewById(R.id.my_text_view);
textView.setMovementMethod(LinkMovementMethod.getInstance());
这两行代码将创建链接(
-设置用户单击链接时自定义链接背景的更改)