在我的应用程序中,我完成了一个简单的注册活动,我正在索尼 xperia neo (480x854 3.7" ~265 ppi running 4.0 ics) 和 samsung gio (320x480 3.2" ~180 ppi running 2.3.6 king ) 上测试我的应用程序
它在 xperia 上运行得很好,但它不在三星上(我猜布局边距不适用)
关于发生了什么的任何想法?
这是我的 xml 文件
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/main_img_bg"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/bg" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="140dp"
android:orientation="vertical" >
<Spinner
android:id="@+id/reg_spinner_country"
android:layout_width="212dp"
android:layout_height="44dp"
android:layout_gravity="center"
android:background="@drawable/spinner_bg"
android:prompt="@string/country_prompt" />
<Spinner
android:id="@+id/reg_spinner_operator"
android:layout_width="212dp"
android:layout_height="44dp"
android:layout_gravity="center"
android:layout_marginTop="25dp"
android:background="@drawable/spinner_bg"
android:prompt="@string/operator_prompt" />
<LinearLayout
android:layout_width="212dp"
android:layout_height="50dp"
android:layout_gravity="center"
android:layout_marginTop="25dp"
android:layout_weight="0"
android:background="@drawable/reg_layout_bg"
android:padding="3dp" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="33dp"
android:layout_gravity="center"
android:layout_marginLeft="10dp"
android:background="@color/white"
android:padding="3dp" >
<TextView
android:id="@+id/reg_text_operator_key"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="+96279"
android:textColor="@color/black" />
</LinearLayout>
<EditText
android:id="@+id/reg_text_mobile_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="3dp"
android:layout_marginRight="10dp"
android:layout_marginTop="3dp"
android:ems="7"
android:inputType="phone" >
</EditText>
</LinearLayout>
<ImageView
android:id="@+id/reg_but_submit"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:src="@drawable/btn_register"
android:text="@string/submit_button" />
</LinearLayout>
</FrameLayout>