0

我正在开发一个显示大脑地图的软件。我有几张地图在每次迭代时都会刷新。我想在可缩放的表格布局中显示这些地图,所以我使用该类 AwesomeTableLayout.java(只是一个基本的 tableLayout 开始):

public class AwesomeTableLayout extends TableLayout{

    public AwesomeTableLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
    }

    public AwesomeTableLayout(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
    }

}

每个地图都使用名为 MapView 的 SurfaceView 进行显示:

public class MapView extends SurfaceView implements SurfaceHolder.Callback {

我想以编程方式添加这些地图,然后用户可以删除/添加不同的地图(输入、内存、焦点等)。

所以在我的MainActivity我做:

public class MainActivity extends Activity {

        //...

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

                Resources r = getResources();
        XmlResourceParser parser = r.getXml(R.layout.activity_main);
        AttributeSet as = Xml.asAttributeSet(parser);
        Context context = getApplicationContext();

        mMapView = new MapView(context, as);
        mMapView2 = new MapView(context, as);

        AwesomeTableLayout tl = (AwesomeTableLayout) findViewById(R.id.layout);

        TableRow tr = new TableRow(this);
        tr.addView(new AddMapOrStatsView(context, 0, 0));
        tr.addView(mMapView2);
        tr.addView(mMapView);
        tr.addView(new AddMapOrStatsView(context, 0, 1));
        tr.addView(new AddMapOrStatsView(context, 0, 2));
        tl.addView(tr, new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
                LayoutParams.WRAP_CONTENT));
        }

该类AddMapOrStatsView只是一种在桌子上添加新地图的“添加”图像(图像是android的外星人):

public class AddMapOrStatsView extends ImageView{

    public AddMapOrStatsView(Context context,final int ligne,final int colonne) {
        super(context);
        /* image utilisée */
        setImageResource(R.drawable.ic_launcher);
        setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                System.out.println("Un click simple sur l' AddMapOrStatsView("+ligne+","+colonne+") a été effectué !");
            }
        });
    }
}

activity_main.xml: _

<?xml version="1.0" encoding="utf-8"?>
<com.main.gui.AwesomeTableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" > <!-- 2 columns -->

<!--     <TableRow -->
<!--         android:id="@+id/tableRow1" -->
<!--         android:layout_width="wrap_content" -->
<!--         android:layout_height="wrap_content" -->
<!--         android:padding="5dip" > -->

<!--         <TextView -->
<!--             android:id="@+id/textView1" -->
<!--             android:text="Column 1" -->
<!--             android:textAppearance="?android:attr/textAppearanceLarge" /> -->

<!--         <Button -->
<!--             android:id="@+id/button1" -->
<!--             android:text="Column 2" /> -->

<!--         <Button -->
<!--             android:id="@+id/buttonxx" -->
<!--             android:text="Column 3" /> -->
<!--     </TableRow> -->

</com.main.gui.AwesomeTableLayout>

现在,问题来了。如果我使用前面的代码运行应用程序,我会看到:

想要的代码

如您所见,我只看到 AddMapOrStatView 的 3 个视图。

如果我像这样取消注释xml:

<?xml version="1.0" encoding="utf-8"?>
<com.main.gui.AwesomeTableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" > <!-- 2 columns -->

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="5dip" >

        <TextView
            android:id="@+id/textView1"
            android:text="Column 1"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <Button
            android:id="@+id/button1"
            android:text="Column 2" />

<!--         <Button -->
<!--             android:id="@+id/buttonxx" -->
<!--             android:text="Column 3" /> -->
    </TableRow>

</com.main.gui.AwesomeTableLayout>

我看到这个:

eee

如果我点击播放(即我绘制两个surfaceView),我会看到:

zzzz

最后,我像这样取消注释我的 xml:

<?xml version="1.0" encoding="utf-8"?>
<com.main.gui.AwesomeTableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" > <!-- 2 columns -->

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="5dip" >

        <TextView
            android:id="@+id/textView1"
            android:text="Column 1"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <Button
            android:id="@+id/button1"
            android:text="Column 2" />

        <Button
            android:id="@+id/buttonxx"
            android:text="Column 3" />
    </TableRow>

</com.main.gui.AwesomeTableLayout>

我看到这个:

在此处输入图像描述

然后当我绘制两个表面视图时,我看到了:

在此处输入图像描述

问题是,我只想看看android的3张图片和两张地图。为什么我要在 tableLayout 的行中添加一些其他的东西来查看我的表面视图?

谢谢阅读。

4

1 回答 1

0

我只是像这样固定了surfaceView的持有人的大小:

holder.setFixedSize(60, 60);

它现在正在工作!

于 2013-08-20T10:31:17.407 回答