我在eclipse中更改活动背景颜色,但运行时间没有任何变化。为什么? 这是活动XML代码,我使用android:background ="#ff0000"改变背景cokor:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
tools:content=".TestingDetailsActivity"
android:background="#ff0000">
<Button
android:id="@+id/btnExistsTest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/ExamList" />
</LinearLayout>
和java代码:
package com.tutecentral.restfulapiclient;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class TestingDetailsActivity extends Activity {
Button btnExistsTest;
protected void onCreate() {
//super.onCreate(savedInstanceState);
setContentView(R.layout.activity_testing);
btnExistsTest=(Button) findViewById(R.id.btnExistsTest);
btnExistsTest.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent i=new Intent(TestingDetailsActivity.this,ExamListActivity.class);
startActivity(i);
}
}) ;
}
}
答案 0 :(得分:1)
从手机中手动卸载APK文件,然后从IDE重新运行该应用。有时这种故障会发生。