説明が悪いようなので追加します。
===========メインJavaファイル==============
package mikeneko.HomeTest;
import android.app.Activity;
import android.os.Bundle;
public class Home_Test extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
===========mail.xmlファイル==============
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
http://schemas.android.com/apk/res/
android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</LinearLayout>
===========マニフェストファイル==============
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="
http://schemas.android.com/apk/res/android"
package="mikeneko.HomeTest"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="7" />
<application android:icon="@drawable/icon" android:label="@string/
app_name">
<activity android:name=".Home_Test"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME"/
>
<category
android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
===========説明==============
上記のプロジェクトを作ってみましたがホームアプリを上記プロジェクトアプリに変更しても背景は真っ黒でした。
この状態で、壁紙やライブ壁紙が表示されるようにするにはどうしたらいいでしょうか?
また、他のホームアプリでライブ壁紙などを変更した時、ホームアプリを切り替えても同じものが指定されていますが、その状態がどうやって出来ているのか
がわかりません。