好的,这真是太奇怪了:
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.somelayout);
super.onCreate(savedInstanceState);
//doStuff();
}
这是我的onCreate,没有其他代码被执行!
somelayout.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/prevnext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000001">
<ImageView
android:id="@+id/prev"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="prev"
android:padding="10dp"
android:src="@drawable/leftbtn" />
<ImageView
android:id="@+id/next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:onClick="next"
android:padding="10dp"
android:src="@drawable/rightbtn" />
<TextView
android:id="@+id/group"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:text="text"
android:textColor="#FFF"
android:textSize="18dp" />
</RelativeLayout>
...
</LinearLayout>
root('bg.png')的背景是一个黑暗的背景,显示正确, prevnext的背景非常奇怪:
background =#000 - 错误:显示白色
background =#000000 - 错误:显示白色
background =#F00 - 正确
background =#0F0 - 正确
background =#000001 - 正确