我有圖片構件包含1-10張圖片可以滑動。我知道當我對屏幕進行條紋掃描時,圖像會從左向右滾動。我想自動循環圖庫10自動啓動後的第一個圖像,有沒有自動圓形適配器或方式? final Gallery g = (Gallery) findViewById(R.id.gallery);
g.setAdapter(new ImageAdapter(this));
Animation
在圖庫教程中,他們在代碼中創建一個新的ImageView並應用Gallery.LayoutParams。 我使用一個自定義適配器的畫廊,並希望從xml充氣imageview並將其用作圖庫項目。 問題是,給定的大小(請參閱下面的項目xml定義)被忽略。 自定義適配器: public View getView(final int position, View convertView,
fin