Feeder icon indicating copy to clipboard operation
Feeder copied to clipboard

[DEPRECATED]

Results 5 Feeder issues
Sort by recently updated
recently updated
newest added

Error:(14, 0) Could not find property 'AVOS_APP_ID' on ProductFlavor_Decorated{name=main, dimension=null, minSdkVersion=DefaultApiVersion{mApiLevel=16, mCodename='null'}, targetSdkVersion=DefaultApiVersion{mApiLevel=21, mCodename='null'}, renderscriptTargetApi=null, renderscriptSupportModeEnabled=null, renderscriptNdkModeEnabled=null, versionCode=6, versionName=1.5, applicationId=me.zsr.feeder, testApplicationId=null, testInstrumentationRunner=null, testInstrumentationRunnerArguments={}, testHandleProfiling=null, testFunctionalTest=null, signingConfig=null, resConfig=null, mBuildConfigFields={}, mResValues={}, mProguardFiles=[],...

存本地的话好处是速度快,就是不能及时更新。 我想做个Podcast APP,也涉及到RSS源存储的问题,所以想请教下。 谢谢 Spark

首先谈输入,在Rss规范中,获取到得文章是HTML格式的,这么无法改变,那么问题来了,要用什么View来输出展示HTML文本? ### WebView or TextView ? | | 优势 | 劣势 | | --- | --- | --- | | WebView | | 图片点击事件需要 JavaScrip 代码支持 | | TextView |...

本文旨在抛出如题问题,并提供Feeder项目中的解决方案,希望大家一起讨论一起提升。 ### 效果 在终端输入命令 ![image](https://github.com/zhangsr/Image/blob/master/Screen%20Shot%202015-11-26%20at%2018.58.09.png?raw=true) 弹出数据库浏览的可视化界面: ![image](https://github.com/zhangsr/Image/blob/master/Screen%20Shot%202015-11-26%20at%2018.59.10.png?raw=true) ### 原理 通过adb将app对应的数据库文件拷贝到pc目录,然后调用pc上的数据库浏览软件打开。 ### 实现 1 定义变量 ``` shell PKG=me.zsr.feeder DB=feed_db ``` 2 权限更改,拷贝文件到外部方便读取的目录,如/sdcard/ ``` shell adb shell "run-as $PKG chmod 755 /data/data/$PKG/databases"...