8

私は Android にかなり慣れていないので、いくつかのコードについて少し助けが必要です。

基本的に、私はコインの配列を持っており、ScrollView でコインの画像を動的に表示したいと考えています。ユーザーがコインを追加するたびに、ビューは適切に更新されます。

ありがとうございました!

これが私がやりたいことのスクリーンショットです - http://i.imgur.com/3l2fxKw.png

4

3 に答える 3

29

このサンプルを試す

主な活動

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);
    }
}

activity_main.xml

<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>
于 2013-03-01T08:21:14.727 に答える
0

SurfaceViewの使用を検討してください。

画像を描画するためのキャンバス オブジェクトができたら、ピクセルを適切にマッピングするだけでコインを揃えることができます。

これは良いチュートリアルです: http://www.mindfiresolutions.com/Using-Surface-View-for-Android-1659.php

于 2013-03-01T08:12:44.663 に答える
-3

代わりに使用してGridView、独自のアダプターをカスタマイズしてください。GridviewはListViewのように機能します

于 2013-03-01T09:01:31.280 に答える