你好:)我有一個佈局文件的紅色背景,也是一個TextView,但是當我將這個佈局添加到我的課,我只看到一個空白頁。得到一個空白頁,而不是佈局xml文件
這裏是我的MainActivity:
@SuppressLint("NewApi")
@SuppressWarnings("unused")
public class MainActivity extends Activity implements SensorEventListener {
private SensorManager sensorManager;
private Sensor accelerometer;
private long lastUpdate;
AnimatedView animatedView = null;
ShapeDrawable mDrawable = new ShapeDrawable();
public static int x;
public static int y;
public static final int width = 50;
public static final int height = 50;
public boolean firstDraw = true;
private int screen_width;
private int screen_height;
private int sensorX;
private Timer t;
private int TimeCounter = 0;
private TextView highscore_int;
private int sensorY;
private int time;
private SharedPreferences prefs;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
highscore_int = (TextView) findViewById(R.id.highscore_int);
SharedPreferences prefs = this.getSharedPreferences("myPrefsKey",
Context.MODE_PRIVATE);
time = prefs.getInt("key", 0);
highscore_int.setText("Highscore:" + time + "seconds.");
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
accelerometer = sensorManager
.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
lastUpdate = System.currentTimeMillis();
animatedView = new AnimatedView(this);
setContentView(animatedView);
t = new Timer();
t.scheduleAtFixedRate(new TimerTask() {
public void run() {
runOnUiThread(new Runnable() {
public void run() {
TimeCounter++;
}
});
}
}, 0, 1000);
}
@Override
protected void onResume() {
super.onResume();
sensorManager.registerListener(this, accelerometer,
SensorManager.SENSOR_DELAY_GAME);
}
@Override
protected void onPause() {
super.onPause();
sensorManager.unregisterListener(this);
}
@Override
public void onAccuracyChanged(Sensor arg0, int arg1) {
// TODO Auto-generated method stub
}
@Override
public void onSensorChanged(SensorEvent event) {
// TODO Auto-generated method stub
if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
sensorY = (int) event.values[1];
sensorX = (int) event.values[0];
x -= sensorX * 3;
y += sensorY * 3;
if (x <= 0 || x >= screen_width || y <= 0 || y >= screen_height) {
int oldScore = prefs.getInt("key", 0);
prefs = this.getSharedPreferences("myPrefsKey",
Context.MODE_PRIVATE);
if (TimeCounter > oldScore) {
Editor edit = prefs.edit();
edit.putInt("key", TimeCounter);
edit.commit();
}
finish();
Intent myIntent = new Intent(this, YouLost.class);
startActivity(myIntent);
}
}
}
public class AnimatedView extends ImageView {
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
static final int width = 50;
static final int height = 50;
@SuppressLint("NewApi")
public AnimatedView(Context context) {
super(context);
// TODO Auto-generated constructor stub
display.getSize(size);
screen_width = size.x;
screen_height = size.y;
mDrawable = new ShapeDrawable(new OvalShape());
mDrawable.getPaint().setColor(0xffffAC23);
mDrawable.setBounds(0, 0, screen_width, screen_height);
}
@Override
protected void onDraw(Canvas canvas) {
mDrawable.setBounds(x, y, x + width, y + height);
if (firstDraw) {
x = screen_width/2;
y = screen_height/2;
firstDraw = false;
}
mDrawable.draw(canvas);
invalidate();
}
}
}
這裏是我的activity_main.xml中:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/actionbar_background"
android:orientation="vertical" >
<TextView
android:id="@+id/highscore_int"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="MyText"
android:textColor="@android:color/black"
android:textSize="40sp" />
</RelativeLayout>
它並沒有真正困擾我,但我必須有一個TextView中使用的高分,我的應用程序: )
爲什麼我沒有真正的XML文件,只有一個移動球的空白頁?
大衛,請開始格式化你的代碼?在Eclipse中使用ctrl + shift + f或在Android Studio中使用ctrl + shift + L ... – WarrenFaith
沒有相對佈局的屬性android:orientation =「vertical」首先改變 –
@WarrenFaith做了它-_- – DavidBalas