前提・実現したいこと
二つのリストのスクロールを同期させたい
該当のソースコード
Kotlin
1class ListActivity : AppCompatActivity() { 2 override fun onCreate(savedInstanceState: Bundle?) { 3 super.onCreate(savedInstanceState) 4 setContentView(R.layout.activity_list_actvity) 5 val listA = arrayOf("aaaa","bbbb","cccc","bbbb","cccc","bbbb","cccc","bbbb","cccc","bbbb","cccc","bbbb","cccc","bbbb","cccc","bbbb","cccc","bbbb","cccc","bbbb","cccc") 6 val listB = arrayOf("1111","2222","3333","2222","3333","2222","3333","2222","3333","2222","3333","2222","3333","2222","3333","2222","3333","2222","3333","2222","3333") 7 val arrayAdapterListA = ArrayAdapter(this,android.R.layout.simple_list_item_1,listA) 8 val arrayAdapterListB = ArrayAdapter(this,android.R.layout.simple_list_item_1,listB) 9 listA.adapter = arrayAdapterListA 10 listB.adapter = arrayAdapterListB 11 } 12}
xml
1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" > 6 7 <LinearLayout 8 android:layout_width="match_parent" 9 android:layout_height="wrap_content" 10 android:orientation="horizontal" > 11 12 <TextView 13 android:id="@+id/title1" 14 android:layout_width="match_parent" 15 android:layout_height="wrap_content" 16 android:layout_weight="1" 17 android:gravity="center" 18 tools:text="listA" /> 19 20 <TextView 21 android:id="@+id/title2" 22 android:layout_width="match_parent" 23 android:layout_height="wrap_content" 24 android:layout_weight="1" 25 android:gravity="center" 26 tools:text="@listB" /> 27 </LinearLayout> 28 29 <LinearLayout 30 android:layout_width="match_parent" 31 android:layout_height="match_parent" 32 android:orientation="horizontal"> 33 34 <ListView 35 android:id="@+id/listA" 36 android:layout_width="match_parent" 37 android:layout_height="wrap_content" 38 android:layout_weight="1"> 39 40 </ListView> 41 42 <ListView 43 android:id="@+id/listB" 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" 46 android:layout_weight="1" /> 47 48 </LinearLayout> 49 50</LinearLayout>
試したこと
どのようなアプローチでスクロールを同期させればよいのでしょうか、ご教示お願いします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。