There is one nasty way to do it.
Add an empty entry to the list at position 1
And then in getView:
if position is 0 set layout width of that item to be 2x normal width.
if position is 1 (or make some kind of flag for that item) inflate empty layout like
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="200dip"
android:visibility="gone" />
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…