0

我在活动类中制作了一个动画。现在我需要在布局中实现这个活动。所以我打开新的活动类和新的 xml。然后在活动中调用布局。但它不起作用。

这是 main1.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.frame.animation.FrameAnimationActivity
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
</LinearLayout>

还有活动课

public class LaunchActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main1);
 }
}

注意:我在 Androidmanifest 中添加了活动

4

1 回答 1

0

布局文件中的每个条目都应该是 View 的子类。

XML 文件中不能有活动。

将您的代码移动到继承自 View 或 ViewGroup 的新类。

于 2012-07-19T06:15:23.410 回答