Коснитесь сразу двух представлений на android

Вот мой макет:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" >

    <SeekBar 
        android:id="@+id/seekBar1" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        />
    <TextView 
        android:id="@+id/textView1" 
        android:layout_width="fill_parent" 
        android:layout_height="60dip">
        </TextView>
    <SeekBar 
        android:id="@+id/seekBar2" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        />
</LinearLayout>

Я хочу иметь возможность перемещать две SeekBar (которые я буду использовать как ползунки) одновременно, каждая с другим пальцем, но одновременно.

Как мне этого добиться?

10
задан XXX 11 January 2012 в 15:42
поделиться