0

I need to put several listviews inner a LinearLayout. The Listviews should be wrap content to adapt the listview to their items. I need have one only scroll with which I can scroll all the listviews. I know that i can't use a scrollview because the listviews have their own scroll (but i don't need the scrolls of the listviews because i have them in wrap-content). I thought maybe puting the listviews inside the LinearLayout I will hadn't problems with the scrollview, but it didn't work, the LinearLayout was fixed to the screen, the scrollview didn't appear and the listviews ended scrollable. Without the scrollview if i have the list in wrap-content, their shown properly but i haven't any scroll and i can't see the lisviews below the screen. Really i have had this bug for one month and i haven't found any solution, i am desperate :(

My code:

XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/detail_info_on_top" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:background="#FF003150"
    android:orientation="vertical">
<!--<ScrollView android:layout_width="fill_parent"-->
<!--    android:layout_height="fill_parent"-->
<!--    android:fillViewport="true">-->
    <LinearLayout 
            android:id="@+id/layout"
            android:scrollbars="vertical"
            android:scrollbarAlwaysDrawVerticalTrack="true" 
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
    </LinearLayout>
<!--</ScrollView>-->

JAVA

@Override
protected void onCreate(Bundle icicle) {
             super.onCreate(icicle);

             ...

             LinearLayout layout = (LinearLayout)findViewById(R.id.layout);
        ArrayList<SectionHolder> shs = SObjectDB.SOBJECTS.get(sobject).detail;

        for(SectionHolder sh : shs) {
        /** layout by each section */
            ListView lsvDetails = new ListView(this);
                lsvDetails.setPadding(0, 0, 0, 0);
                lsvDetails.setBackgroundColor(0xFFFFFFFF);
                lsvDetails.setCacheColorHint(Color.TRANSPARENT);
                lsvDetails.setFocusable(false);
                lsvDetails.setSelected(false);
                lsvDetails.setScrollContainer(false);
                lsvDetails.setVerticalScrollBarEnabled(false);
                LinearLayout ll = new LinearLayout(this);
                LinearLayout.LayoutParams llp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);           
                ll.setLayoutParams(llp);
                ll.setOrientation(LinearLayout.VERTICAL);
                ll.setFocusable(false); 

            /** setting section header */
            TextView sv = new TextView(this);
            sv.setText(sh.name);
            sv.setTextSize(15);
            sv.setTextColor(0xFFFFFFFF);
            sv.setBackgroundColor(0xFF656565);
            sv.setWidth(480);
            //sv.setTypeface(null, Typeface.BOLD);
            ll.addView(sv);

            ...

            LinkedHashMap<String,String> hm; 
            final ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
            hm = new LinkedHashMap<String, String>();
            for(FieldHolder fs : fhs) {
                hm = new LinkedHashMap<String, String>();

                     ...

                hm.put("data", v1);
                mylist.add(hm); 

            }
            ListView.LayoutParams lsvp = new ListView.LayoutParams(ListView.LayoutParams.FILL_PARENT, ListView.LayoutParams.WRAP_CONTENT);
            lsvDetails.setLayoutParams(lsvp);
            lsvDetails.setScrollbarFadingEnabled(false);
            lsvDetails.setScrollingCacheEnabled(false);
            lsvDetails.setSelector(R.drawable.multi_white_color);
            lsvDetails.setDrawSelectorOnTop(false);
            lsvDetails.setAdapter(new DetailAdapter(this, mylist, R.layout.grid_detail, new String[]{"label", "data"}, new int[]{R.id.lblName, R.id.lblData}));

            ll.addView(lsvDetails);
            layout.setVerticalScrollBarEnabled(true);
            layout.setScrollbarFadingEnabled(true);
            layout.setScrollBarStyle(50331648);
            layout.setScrollContainer(true);
            layout.setFocusable(true);
            layout.setFocusableInTouchMode(true);
            layout.addView(ll); 

        }
   }

How you can see i create the lisviews dinamically and i put indside the layout with a secttion header. if you have some doubt ask me I need find a solution soon.

http://www.freeimagehosting.net/image.php?6dea1468bd.png

Luciano
  • 31
  • 1
  • 4
  • Why are you using two ListViews, a GridView would probably suit you better. – Pentium10 Aug 13 '10 at 14:12
  • I am using more of two listviews, i have multiple listviews depending of the Data Base and then i put them inside a linearLayout. How i could use a gridView for this? i need a list not a grid. Can you give me some example of how i can resolve my problem with a gridview? Thanks for response – Luciano Aug 13 '10 at 14:36

2 Answers2

0

I need have one only scroll with which I can scroll all the listviews.

That is not possible, sorry.

i have multiple listviews depending of the Data Base and then i put them inside a linearLayout

Don't do that. Create one ListView. Combine your database results into a single adapter and put that adapter in the ListView. Perhaps my MergeAdapter can help.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
0

I was trying to achieve your goal but failed and i don't have a lot of time to waste but here is my attempt code:

package your.packag;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AbsListView;
import android.widget.AbsListView.OnScrollListener;
import android.widget.BaseAdapter;
import android.widget.ListView;
import android.widget.TextView;

public class TestScrollingActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        final ListView lv1 = (ListView) findViewById(R.id.listView1);
        final ListView lv2 = (ListView) findViewById(R.id.listView2);
        final ListView lv3 = (ListView) findViewById(R.id.listView3);
        final ListView lv4 = (ListView) findViewById(R.id.listView4);
        final ListView lv5 = (ListView) findViewById(R.id.listView5);
        BaseAdapter ba = new BaseAdapter() {

            @Override
            public View getView(int position, View convertView, ViewGroup parent) {
                TextView tv = new TextView(parent.getContext());
                tv.setText(String.valueOf(position));
                return tv;
            }

            @Override
            public long getItemId(int position) {
                // TODO Auto-generated method stub
                return position;
            }

            @Override
            public Object getItem(int position) {
                // TODO Auto-generated method stub
                return position;
            }

            @Override
            public int getCount() {
                // TODO Auto-generated method stub
                return 100;
            }
        };
        lv1.setAdapter(ba);
        lv2.setAdapter(ba);
        lv3.setAdapter(ba);
        lv4.setAdapter(ba);
        lv5.setAdapter(ba);
        OnScrollListener onScrollListener = new OnScrollListener() {

            @Override
            public void onScrollStateChanged(AbsListView view, int scrollState) {
                if (scrollState == SCROLL_STATE_IDLE) {
                    int top = view.getHeight()/view.getAdapter().getCount()*view.getFirstVisiblePosition();
                    if (lv1 != view) {
                        lv1.scrollTo(0, top);
                    }
                    if (lv2 != view) {
                        lv2.scrollTo(0, top);
                    }
                    if (lv3 != view) {
                        lv3.scrollTo(0, top);
                    }
                    if (lv4 != view) {
                        lv4.scrollTo(0, top);
                    }
                    if (lv5 != view) {
                        lv5.scrollTo(0, top);
                    }
                }
            }

            @Override
            public void onScroll(AbsListView view, int firstVisibleItem,
                    int visibleItemCount, int totalItemCount) {
            }
        };
        lv1.setOnScrollListener(onScrollListener);
        lv2.setOnScrollListener(onScrollListener);
        lv3.setOnScrollListener(onScrollListener);
        lv4.setOnScrollListener(onScrollListener);
        lv5.setOnScrollListener(onScrollListener);
        }
}

<ListView
    android:id="@+id/listView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" >

    <!-- Preview: listitem=@android:layout/simple_list_item_1 -->
</ListView>

<ListView
    android:id="@+id/listView2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

<ListView
    android:id="@+id/listView3"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

<ListView
    android:id="@+id/listView4"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

<ListView
    android:id="@+id/listView5"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

Scrolling fails in a strange way be sure to try it and let me know if you fixed it.

P.S. this comes very close to making it work.

Shereef Marzouk
  • 3,282
  • 7
  • 41
  • 64
  • Another way to go at it is to make a custom layour for each row and put your stuff in there from all the LVs u wanna make, it will scroll together because it's 1 LV after all – Shereef Marzouk Feb 28 '12 at 12:59