如何将View添加到XML布局android

前端之家收集整理的这篇文章主要介绍了如何将View添加到XML布局android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个XML布局,包含我的所有按钮和图像,我想在我的布局顶部移动云.所以我创建了一个视图并使我的云移动,但是我无法将视图与布局链接起来.这是我的观看代码

public class CloudView extends View {

Bitmap cloud;
int ChangingX;


public CloudView(Context context) {
    // TODO Auto-generated constructor stub
    super(context);
    cloud = BitmapFactory.decodeResource(getResources(),R.drawable.cloud);
    ChangingX = 50;

}

@Override
protected void onDraw(Canvas canvas) {
    // TODO Auto-generated method stub
    super.onDraw(canvas);
    canvas.drawBitmap(cloud,ChangingX,50,null);
    if (ChangingX < canvas.getWidth())
        ChangingX += 2;
    else
        ChangingX = 50;
    invalidate();
}

}

这是我的MainActivity

public class MainActivity extends Activity {

CloudView myView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    myView = new CloudView(this);
    setContentView(myView);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main,menu);
    return true;
}

 }

我是动画片中的新手,你可以详细解释我如何将视图与布局相关联.
如果它不能工作除了View我可以使用的其他类.

感谢您的时间和考虑.抱歉我的英语不好

最佳答案
这是Android Developer Link可能对我有用.

Define Custom Attributes

如何定义属性

要定义自定义属性,请向项目添加资源.习惯上将这些资源放入res / values / attrs.xml文件中.以下是attrs.xml文件的示例:

如何在XML中使用

阅读更多详细信息请遵循.

原文链接:https://www.f2er.com/android/430878.html

猜你在找的Android相关文章