1

テーブルレイアウトでテキストビューを使用して動的行を追加しています。また、そのテキストビューのxy座標が必要です。そのためにview.getLocationOnScreen(loc)メソッドを使用しました。

最後のアイテムコーディネートしか表示されていませんが、すべてのアイテムコーディネートを表示したいです。

これは私のソースコードです。そのために私を助けてください。

ありがとうございます。

public class MainActivity extends Activity {
TextView tv1, tv2;
TableRow row;
TextView txt;
TableLayout tl;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    tl = (TableLayout) findViewById(R.id.tableLayout1);
    for (int i = 0; i <= 15; i++) {
        row = new TableRow(this);
        txt = new TextView(this);

        tl.addView(row);
        row.addView(txt);
        readLocation();
    }
}

@Override
public void onWindowFocusChanged(boolean hasFocus) {
    // TODO Auto-generated method stub
    super.onWindowFocusChanged(hasFocus);
    readLocation();
}

private void readLocation() {
    int[] locationOnScreen = new int[2];
    txt.getLocationOnScreen(locationOnScreen);
    txt.setText(locationOnScreen[0] + " : " + locationOnScreen[1]);
}

}

そして私の次のxml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </TableLayout>
</ScrollView>

4

1 に答える 1

1

onCreateこの時点ではレイアウト手順はまだ完了していないため、この方法でこれらの座標をメソッドで取得しようとしないでください。

コードを少し変更したデモベースを次に示します。

public class MainActivity extends Activity {

ArrayList<TextView> txt = new ArrayList<TextView>();
TableLayout tl;

Handler _h = new Handler();

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    tl = (TableLayout) findViewById(R.id.tableLayout1);
    for (Integer i = 0; i <= 15; i++) {
        TableRow therow = new TableRow(this);
        TextView thetxt = new TextView(this);

        therow.addView(thetxt);
        tl.addView(therow);

        txt.add(thetxt);

        thetxt.setText("stub");
    }

    tl.requestLayout();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

@Override
protected void onResume() {
    super.onResume();
    _h.postDelayed(new Runnable() {

        @Override
        public void run() {

            for (Integer i = 0; i <= 15; i++) {

                TextView thetxt = txt.get(i);

                int[] locationOnScreen = new int[2];
                thetxt.getLocationOnScreen(locationOnScreen);
                thetxt.setText(locationOnScreen[0] + " : " + locationOnScreen[1]);
            }        


        }
    }, 1000);

}

}

重要なポイントはpostDelayedonResumeシステムがすべてのビューを正しく配置できるようにすることです。

于 2012-11-10T22:38:14.780 に答える