Android ListView and Tips.

Posted lytwajue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ListView and Tips.相关的知识,希望对你有一定的参考价值。

Tips:


ListView嵌套ListView,有footerView时。须要又一次measure高度时,footerview最顶层的view不能是RelativeLayout,最好用LinearLayout包RelativeLayout.否则

View.measure(0,0)会报异常。


ListView 加HeaderView。在OnItemClick时。position 把HeaderView算进去了。


EditText android:textCursorDrawable="@null"可使光标变黑。闪烁


OnTouch事件假设return true.会把OnClick, OnLongClick导致回调不到。



小米手机 Notification无法通知:Activity增加例如以下属性。

<intent-filter>

<action android:name="android.intent.action.MAIN" />

</intent-filter>



桌面快捷方式,应用程序使用过程中,用户点了HOME键,有时再点桌面快捷方式,程序不能回到原始的地方,但从程序列表中,点击应用程序图标,又能够回去。

1. 打印出长按程序列表中的图标,在桌面产生快捷方式。

2. 获取它的參数。

3. 发现通过拖动产生的快捷方式有两个新值:flag 0x1020000通过查找。及下面两个值:

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

intent.addFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);

增加之后,解决此问题了。











以上是关于Android ListView and Tips.的主要内容,如果未能解决你的问题,请参考以下文章

android中的listview正常和悬停背景样式

Android XML解析listview

Android listview怎么实现滚动分页

php APC Configuration and Usage Tips and Tricks

如何在listview android中使文本颜色透明?

[转]Android How to Download and Make Volley.jar