0

我是 Android SDK 的新手,所以我想弄清楚这一点。我已经阅读了文档和教科书,但它们在这件事上并没有特别的帮助。

我只是想在屏幕上以线性布局绘制一个简单的矩形。我无法显示形状,但是,当我以相同的方式向此布局添加文本时,文本会显示出来。我错过了什么?

package jorge.jorge.jorge;

import android.app.Activity;
import android.graphics.Color;
import android.graphics.drawable.ShapeDrawable;
import android.graphics.drawable.shapes.RectShape;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

public class ShapesActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        ShapeDrawable rect = new ShapeDrawable(new RectShape());

        rect.getPaint().setColor(Color.GREEN);

        ImageView view1 = new ImageView(this);

        view1.setImageDrawable(rect);

        LinearLayout frame = (LinearLayout)findViewById(R.id.linear1);

        frame.addView(view1);

//        TextView tx = new TextView(this);
//        
//        tx.setText("Hello World");
//        
//        frame.addView(tx);
    }
}
4

1 回答 1

2

Shape 通常用于为某些视图制作背景。它的宽度和高度与使用它的视图相同。然后,如果这个视图没有宽度和高度,它也没有宽度和高度。

基本上,我认为你的 ImageView 没有宽度和高度,那么它是不可见的。你可以在这里看到如何以编程方式设置它: Set ImageView width and height programmatically?

但是,我建议您以 XML 的方式进行布局。

于 2012-06-16T01:34:13.253 回答