0
所以我試圖實現滑動圖像查看。我不需要它是全屏。只是上部屏幕的一部分。所以我有這樣的活動imageview -我試圖在Android中實現滑動圖像查看器
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher" />
現在android:src是一個drawable我創建例如。那麼有可能我可以創建一個圖像數組並將該數組名稱作爲源值?如果是的話,我怎麼才能讓圖像顯示在另一個? 我不想讓縮略圖顯示。一旦活動開始,圖像應該開始顯示,就像您通常在網站上看到的一樣。
非常感謝!我得到了它的工作。 –