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 に答える