5

我有一个 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;
}

 }

我是android动画的新手,你能详细解释一下我如何将视图与布局联系起来吗?如果它不能工作除了我可以使用的 View 之外的其他类。

感谢您的时间和考虑。对不起我的英语不好。

4

2 回答 2

2

这是 Android 开发人员链接,可能对您有用。

定义自定义属性

如何定义属性:

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

<resources>
   <declare-styleable name="PieChart">
       <attr name="showText" format="boolean" />
       <attr name="labelPosition" format="enum">
           <enum name="left" value="0"/>
           <enum name="right" value="1"/>
       </attr>
   </declare-styleable>
</resources>

如何使用XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:custom="http://schemas.android.com/apk/res/com.example.customviews">
 <com.example.customviews.charting.PieChart
     custom:showText="true"
     custom:labelPosition="left" />
</LinearLayout>

阅读更多细节请遵循。

于 2013-06-08T05:24:54.657 回答
2

用这个:

View viewToLoad = LayoutInflater.from(this.getParent()).inflate(R.layout.activity_my_vault, null,false);
        this.addContentView(viewToLoad);
于 2013-06-08T05:39:44.967 回答