我在活动类中制作了一个动画。现在我需要在布局中实现这个活动。所以我打开新的活动类和新的 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 中添加了活动