你好,我是android编程的初学者(在stackoverflow中)!
我有一个带有RelativeLayout的活动(我将它称为rl1更容易理解)布局类型。在rl1里面我有一个带字符串和图像的自定义列表视图,我在rl1中添加了另一个RelativeLayout(我将其称为rl2)。 rl2位于listview之上。 我想在rl1中的新RelativeLayout(rl2)上绘制一些东西。发生这种情况是因为我希望能够绘制线条和形状,同时在我的列表视图中编辑字符串和图像,并且做到非常基本,请参阅我的自定义列表视图(类似于屏幕的1/3)为listview绘制内容和屏幕的2/3;我不想将这些操作分成两个单独的活动,我想使用相同的活动/屏幕。) 我怎么能做到这一点?我没走好路?任何想法或网络教程都可以向我抛出xD
干杯
答案 0 :(得分:0)
请尝试使用以下代码。
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1" >
<com.multicom.pulltorefreshlistview.PullToRefreshView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="@android:color/transparent"
android:clipChildren="false"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"
android:listSelector="@android:color/transparent"
android:longClickable="false" >
</com.multicom.pulltorefreshlistview.PullToRefreshView>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
答案 1 :(得分:0)
解决了我的问题!答案就在这里:
http://javandroidevelop.blogspot.pt/2012/09/all-about-surfaceview-android-lessons.html
很棒的教程!非常感谢nilesh patel。