私は Android にかなり慣れていないので、いくつかのコードについて少し助けが必要です。
基本的に、私はコインの配列を持っており、ScrollView でコインの画像を動的に表示したいと考えています。ユーザーがコインを追加するたびに、ビューは適切に更新されます。
ありがとうございました!
これが私がやりたいことのスクリーンショットです - http://i.imgur.com/3l2fxKw.png
私は Android にかなり慣れていないので、いくつかのコードについて少し助けが必要です。
基本的に、私はコインの配列を持っており、ScrollView でコインの画像を動的に表示したいと考えています。ユーザーがコインを追加するたびに、ビューは適切に更新されます。
ありがとうございました!
これが私がやりたいことのスクリーンショットです - http://i.imgur.com/3l2fxKw.png
このサンプルを試す
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.activity_main);
LinearLayout linearLayout1 = (LinearLayout) findViewById(R.id.linearLayout1);
for(int x=0;x<3;x++) {
ImageView image = new ImageView(MainActivity.this);
image.setBackgroundResource(R.drawable.ic_launcher);
linearLayout1.addView(image);
}
}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
</ScrollView>
</LinearLayout>
SurfaceViewの使用を検討してください。
画像を描画するためのキャンバス オブジェクトができたら、ピクセルを適切にマッピングするだけでコインを揃えることができます。
これは良いチュートリアルです: http://www.mindfiresolutions.com/Using-Surface-View-for-Android-1659.php
代わりに使用してGridView
、独自のアダプターをカスタマイズしてください。GridviewはListViewのように機能します