上一页 1 ··· 16 17 18 19 20
摘要: 1. external/tr69c/inc/tr69cdefs.htypedef struct TRxObjNode{ const char *name; TRxPAtrrib paramAttrib; TRxSETFUNC setTRxParam; /* only set if param is writeable */ TRxGETFUNC getTRxParam; void *objDetail; InstanceDope *instanceDope;}TRxObjNode;2. (1)typedef union TRxPAttrib { struct Attrib { eTRxType 阅读全文
posted @ 2013-05-31 15:11 安心种田 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 安装了ssh后, 想卸载, 卸不掉。打卡ubuntu software center, 查看history.】再用apt-get remove 卸载相应选项。 阅读全文
posted @ 2013-05-30 10:35 安心种田 阅读(140) 评论(0) 推荐(0) 编辑
摘要: ssh gavin@172.16.184.252 阅读全文
posted @ 2013-05-30 09:31 安心种田 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 解压缩tar -xzvf src.tar -C ~/dstdir压缩tar -czvf dst.tar srcdir 阅读全文
posted @ 2013-05-30 09:22 安心种田 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1. 在 sound_settings.xml里添加 <CheckBoxPreference android:key="tr69" android:title="@string/tr69" android:persistent="false" android:defaultValue="true"/>2. 在string.xml中添加 <string name="tr69">TR69</string>3.在SoundSettings.java中添加 priva 阅读全文
posted @ 2013-05-29 14:38 安心种田 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 修改 ./packages/apps/Settings里的 AndroidManifest.xml在 activity android:name="Settings$SoundSettingsActivity" 中 添加 <category android:name="android.intent.category.LAUNCHER" />重新编译打开虚拟机, 可在应用桌面图标上看到SoundSettings图标。 阅读全文
posted @ 2013-05-29 12:08 安心种田 阅读(281) 评论(0) 推荐(0) 编辑
摘要: http://developer.android.com/guide/components/fragments.html1. Fragments A Fragment represents a behavior or a portion of the user interface in an Activity. a modular section of an activity. A Fragment must always be embedded in an activity, and its lifecycle is directly affected by the host activit 阅读全文
posted @ 2013-05-28 20:56 安心种田 阅读(194) 评论(0) 推荐(0) 编辑
摘要: http://developer.android.com/guide/components/activities.html1. Activities Each activity is given a window in which to draw its user interface. The window typically fills the screen, but may be smaller than the screen and float on top of other windows. Tipycally, one activity in an application is s. 阅读全文
posted @ 2013-05-28 15:12 安心种田 阅读(225) 评论(0) 推荐(0) 编辑
摘要: http://developer.android.com/guide/components/fundamentals.html1. APP Fundmentals (1) Android is a multi-user Linux system in which each application is a different user. (2) By default, the system sets each application a unique Linux user ID (used only by the system, unknown to theapplication) sets 阅读全文
posted @ 2013-05-28 11:27 安心种田 阅读(173) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20