Справа налево horizontalscrollview в android studio
Здравствуйте, я новичок в android studio.
В нем есть horizontalScrollView и другие виды.
<HorizontalScrollView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/horizontalScrollView" android:scrollbars="none"> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="right" android:gravity="center_vertical" style="@style/match" android:id="@+id/ll_lastpics"> <LinearLayout style="@style/cell"> <LinearLayout style="@style/img_cell"> <ImageView android:layout_width="90dp" android:layout_height="90dp" android:id="@+id/img_last" android:src="@drawable/mmm" /> </LinearLayout> <LinearLayout style="@style/img_txt_block"> <TextView android:text="xxxxxxxxxxxx" android:id="@+id/textView3" style="@style/img_txt" /> </LinearLayout> </LinearLayout> <LinearLayout style="@style/cell"> <LinearLayout style="@style/img_cell"> <ImageView android:layout_width="90dp" android:layout_height="90dp" android:src="@drawable/bbb" /> </LinearLayout> <LinearLayout style="@style/img_txt_block"> <TextView android:text="xxxxxxxxxxx" android:id="@+id/textView35" style="@style/img_txt" /> </LinearLayout> </LinearLayout> <LinearLayout style="@style/cell"> <LinearLayout style="@style/img_cell"> <ImageView android:layout_width="90dp" android:layout_height="90dp" android:id="@+id/imageView" android:src="@drawable/ppp" /> </LinearLayout> <LinearLayout style="@style/img_txt_block"> <TextView android:text="xxxxxxxxxx" android:id="@+id/textView32" style="@style/img_txt" /> </LinearLayout> </LinearLayout> <LinearLayout style="@style/cell"> <LinearLayout style="@style/img_cell"> <ImageView android:layout_width="90dp" android:layout_height="90dp" android:id="@+id/img_last123" android:src="@drawable/llll" /> </LinearLayout> <LinearLayout style="@style/img_txt_block"> <TextView android:text="آموزشگاه ژاله" android:id="@+id/textView31" style="@style/img_txt" /> </LinearLayout> </LinearLayout> </LinearLayout> </HorizontalScrollView>
Он хорошо прокручивается, но слева направо.
Мне нужен свиток справа налево!
Я нашел ниже код в oncreate, но безуспешно.
final HorizontalScrollView s=(HorizontalScrollView)ll.findViewById(R.id.horizontalScrollView); s.postDelayed(new Runnable() { public void run() { s.fullScroll(HorizontalScrollView.FOCUS_RIGHT); } }, 100L);
Что я уже пробовал:
Справа налево HorizontalScrollview.