0

我会知道是否有可能创建一个与线性布局、表格布局、相对布局等相比具有不同布局的新 Android 活动......
我的目标是创建一个活动,其中 android 加载一些对象(例如注释)并将这些注释放入活动中,以便最终用户产生在平板电脑屏幕上贴有大量便利贴的错觉。

我要实现的结果与计算机的布局非常相似,其中有很多图标,您可以插入、删除和移动这个代表我的笔记的图标。
我想使用这样的网格http://developer.android.com/guide/tutorials/views/hello-gridview.html,但是通过这种布局,我可以将图标移动到我想要的位置吗?

4

2 回答 2

2

像这样的东西:

public class MyActivity extends Activity {

    private RelativeLayout _mainLayout;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        _mainLayout = (RelativeLayout) findViewById(R.id.canvas);
        addChild(50, 50, 150, 150, Color.RED);
        addChild(150, 250, 50, 50, Color.GREEN);
        addChild(200, 200, 100, 100, Color.BLUE);
    }

    public void addChild(int centerX, int centerY, int width, int height, int color) {
        int X = centerX - width / 2;
        int Y = centerY - height / 2;

        RelativeLayout child = new RelativeLayout(this);
        child.setBackgroundColor(color);
        RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(width, height);
        layoutParams.leftMargin = X;
        layoutParams.topMargin = Y;
        layoutParams.bottomMargin = -250;
        layoutParams.rightMargin = -250;
        child.setLayoutParams(layoutParams);
        _mainLayout.addView(child);
    }
}

主.xml:

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

<RelativeLayout
              android:id="@+id/canvas"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:background="@drawable/bg0large"
        >
</RelativeLayout>

于 2012-03-28T15:14:04.337 回答
1

您需要手动将视图绘制到屏幕上,可能使用类似Canvas的东西。这将允许您在您喜欢的地方绘制您的视图。

于 2012-03-28T15:00:43.670 回答