Hi Atsushi Eno,

Aa you advised me in yesterday post
(http://mono-for-android.1047100.n5.nabble.com/Custom-AccordionView-tp5712080.html)
.. I am trying to zip (bin and resources) from my eclipse/adt built project
and include in my binding project as LibraryProjectZip..

Then I build the binding project.. and put dll in my m4a app (bin folder).

At this point.. I think I should see all my accordionView.dll resources in
my m4a resources.designer.cs..

Am I forgetting something? Maybe I have to include the zip file in my mf4
app too?

another doubt..Once Everything will be ok.. how I use my new accordingView..
tell me if I am wrong.. I would have to create a layout including my new
accordingView.. Is this layout correct.. I mean.. references to
accordingView object and so on...

is this..


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android";
   
xmlns:accordion="http://schemas.android.com/apk/res-auto/com.egestionamobile.accordionview";
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/white"
    android:orientation="vertical" >
  
  <ScrollView
      android:layout_width="fill_parent"
      android:layout_height="fill_parent" >

    <com.egestionamobile.accordionview.widget.AccordionView
        android:id="@+id/accordion_view"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        accordion:header_layout_fold_button_id="@+id/fold_button"
        accordion:header_layout_id="@layout/accordion_header"
        accordion:header_layout_label_id="@+id/fold_text"
        accordion:section_bottom="@layout/accordion_footer"
        accordion:section_container="@layout/accordion_section"
        accordion:section_container_parent="@id/section_content"
        
        android:background="#fff5f5f5"
        android:orientation="vertical" >
   

          <LinearLayout
              android:id="@+id/accordion1"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical" >
           
          </LinearLayout>

          <LinearLayout
              android:id="@+id/accordion2"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical" >
          
          </LinearLayout>

      </com.egestionamobile.accordionview.widget.AccordionView>
  </ScrollView>
</LinearLayout>


Thanks john and you!! 



--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Resources-in-Mono-for-Android-Library-Project-tp5626331p5712100.html
Sent from the Mono for Android mailing list archive at Nabble.com.
_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to