Closed GoogleCodeExporter closed 9 years ago
good idea, but you probably stayed with the old ids - you changed the layout
names. The frames/linear layout are retrieved by id so you need to have
treeview_list_item_image_layout as LinearLayour and treeview_list_item_frame as
FrameLayout. Note. The library is not really maintained any more (so you are on
your own if you want to make modifications like that). Also the tree is not
really good mobile control. You should rethink if you want to use it - rather
than that try to read the new http://developer.android.com/design/index.html
Android Guidelines. And use standard controls instead or at least standard
approach. Tree view is bad usability pattern.
Original comment by ja...@potiuk.com
on 20 Oct 2013 at 4:58
I've already treeview_list_item_image_layout as LinearLayour and
treeview_list_item_frame as FrameLayout but I get the same error. (It think
this is a inflate error or something else)
This is the content of tree_list_item_wrapper.xml (or see screenshot):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<FrameLayout android:id="@+id/treeview_list_item_frame" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_weight="1">
</FrameLayout>
<LinearLayout android:id="@+id/treeview_list_item_image_layout" android:layout_width="80dip"
android:layout_height="fill_parent" android:gravity="right|center_vertical">
<ImageView android:id="@+id/treeview_list_item_image" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@android:drawable/arrow_down_float" >
</ImageView>
</LinearLayout>
</LinearLayout>
Original comment by DutchSp...@gmail.com
on 20 Oct 2013 at 6:23
Attachments:
I think simply the old xml is used. You need to replace it in the library
rather than add. Again - please try to understand the code and debug it - I
don't have time to debug the deprecated project (see the main page of the
project). If you choose to use treeview - you are on your own, sorry.
Original comment by ja...@potiuk.com
on 20 Oct 2013 at 6:28
You were right I've replaced it (and it's working now). What is then a good
alternative for a tree view with more then 3 levels?
Last question: the padding is now gone, how to get the padding back before the
text? (see screenshot)
Original comment by DutchSp...@gmail.com
on 20 Oct 2013 at 6:58
Attachments:
Original issue reported on code.google.com by
DutchSp...@gmail.com
on 20 Oct 2013 at 10:09