私はこのようなギャラリーをデザインしています
今、私は非常に素晴らしいギャラリーを実装しました..今問題は、画像の下に来る2つの点です. ドットのロジック: 選択した画像の黒色のドットと、任意のドット画像の選択をギャラリーで変更する必要があります。
私はこのようなギャラリーをデザインしています
今、私は非常に素晴らしいギャラリーを実装しました..今問題は、画像の下に来る2つの点です. ドットのロジック: 選択した画像の黒色のドットと、任意のドット画像の選択をギャラリーで変更する必要があります。
私はこの問題を次のように解決し
ました。
2)そして、これは私が2つを統合した方法です
iconGallery = (Gallery) view.findViewById(R.id.product_image_gallery_icon);
iconGallery.setVisibility(View.VISIBLE);
gallery = (Gallery) view.findViewById(R.id.product_image_gallery);
GalleryImageAdapter adapter = new GalleryImageAdapter(getActivity(), urlList);
gallery.setAdapter(adapter);
gallery.setCallbackDuringFling(false);
gallery.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
GalleryIconAdapter galleryIconAdapter= new GalleryIconAdapter(getActivity(), dotCount, position);
iconGallery.setAdapter(galleryIconAdapter);
}
public void onNothingSelected(AdapterView<?> parent) {
}
});
私の誰かがより良い解決策を見つけたので更新してください。