好吧,这真的很奇怪:
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.somelayout);
super.onCreate(savedInstanceState);
//doStuff();
}
这是我的 onCreate,没有其他代码正在执行!
一些布局.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 的背景非常奇怪:
背景 = #000 -- 错误:显示为白色
背景 = #000000 - 错误:显示为白色
背景 = #F00 -- 正确
背景 = #0F0 -- 正确
背景 = #000001 -- 正确