应用程序在不同版本的 android 中表现异常这是正确的视图:
http://shrani.si/f/1b/Ng/20a9K5H6/cool.png
这是错误的看法:
http://shrani.si/f/3A/tJ/FQNPrZA/notcool.png
这是我定义主要布局的 main.xml:
[st.koda]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#646464"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_gravity="bottom|left"
android:layout_weight="0.94" >
<aa.bb.cc.Panel
android:id="@+id/yourID"
android:layout_width="fill_parent"
android:layout_height="412dp" />
</LinearLayout>
</LinearLayout>
[/st.koda]
这是 onCreate 方法的声明:
[st.koda]
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mPanel = (Panel) findViewById(R.id.yourID);
[/st.koda]