アクティビティ クラスでアニメーションを作成しました。このアクティビティをレイアウトに実装する必要があります。新しいアクティビティ クラスを開き、新しい 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 にアクティビティを追加します