在Android上立即触摸两个视图

前端之家收集整理的这篇文章主要介绍了在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>

我想要同时移动两个SeekBars(我将用作滑块),每个都有不同的手指,但同时.

我该如何实现?

解决方法

This可能有帮助
原文链接:https://www.f2er.com/android/312979.html

猜你在找的Android相关文章