我在活动类中制作了一个动画。现在我需要在布局中实现这个活动。所以我打开新的活动类,新的xml.then在activity中调用布局。但它不起作用。
这是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中添加了活动
答案 0 :(得分:0)
布局文件中的每个条目都应该是View的子类。
您不能在XML文件中拥有活动。
将代码移动到从View或ViewGroup继承的新类。