ランドスケープでのみ使用できるAndroid用のランチャーを作成しています。画面の半分はボタンであり、アプリではなくボタンであり、半分は単なる時計などです。ボタンに触れると、ボタンが1秒か何かのように光り、その後に別の画面を表示するアニメーションが続きます。グローの助けだけが必要です。私を助けてください、どうもありがとう!
これは私のxmlです:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/wallpaper" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent" >
</LinearLayout>
<GridView
android:id="@+id/gridView1"
android:layout_width="284dp"
android:layout_height="wrap_content"
android:numColumns="3" >
</GridView>
また、グリッドビューにイメージボタンを追加する方法も知りたいです
私のJavaコード:
package com.mysoftware.mysoftwareos.launcher;
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.LinearLayout;
public class MainActivity extends Activity implements OnClickListener {
LinearLayout mainLayout;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Import views
mainLayout = (LinearLayout)findViewById(R.id.mainLayout);
//Setup onClickListener for the buttons
}
@Override
public boolean onKeyDown(int KeyCode, KeyEvent event) {
if ((KeyCode == KeyEvent.KEYCODE_BACK)) {
//Do nothing to prevent the back button to kill the launcher
return true;
}
return super.onKeyDown(KeyCode, event);
}
public void onClick(View src) {
switch(src.getId()) {
}
}
}