0
我有這樣的佈局:滾動型的Android如何開始在確定的位置
<HorizontalScrollView
android:id="@+id/scroll"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="25dp"
android:layout_toRightOf="@+id/centro">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/welcometoflorida"
android:orientation="horizontal" >
<TextView
android:id="@+id/sf_boton"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/southfloridacover" />
<TextView
android:id="@+id/cf_boton"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/centralfloridacover" />
<TextView
android:id="@+id/nf_boton"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/northfloridcover" />
<TextView
android:id="@+id/fb_boton"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/floridabeaches" />
<TextView
android:id="@+id/tfry_boton"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/ridescover" />
<TextView
android:id="@+id/sd_boton"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/shoppingcover" />
<TextView
android:id="@+id/da_boton"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:background="@drawable/discovermapcover" />
</LinearLayout>
</HorizontalScrollView>
我想,當用戶滾動視圖的移動方式類似這樣的2張照片。
- https://drive.google.com/file/d/0By7CZpKC1ijIMlNFSDZSUmlhLU0/view?usp=sharing
- https://drive.google.com/file/d/0By7CZpKC1ijIUGZmTml3bWJYQTA/view?usp=sharing
我的滾動就像是第一種觀點,但是當我開始滾動只在當前位置挪動的物品。我想像第二張圖片一樣滾動。