android - Draw and listview in same activity/screen -


hello i'm beginner in android programming (and in stackoverflow)!

i have activity relativelayout (i call rl1 more easy understand) layout type. inside of rl1 have custom listview strings , images , added relativelayout inside rl1 (i call rl2). rl2 sits on top of listview. draw on new relativelayout (rl2) inside rl1. happens because want able draw lines , shapes and, @ same time, edit strings , images in listview, , basic, see custom listview (its 1/3 of screen draw stuff , 2/3 of screen listview; dont want separate actions onto 2 separate activities, want use same activity/screen).
how can accomplish this? im not walking path? ideias or web tutorials can thrown towards me xd

cheers

please try use bellow code.

        <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> 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -