1

如何设置微调器?在我的代码微调器和编辑文本框布局边距左侧和右侧在模拟器中看起来相等但是当我在真实设备上部署微调器时,与编辑文本框相比,左侧和右侧看起来更大我如何设置相等的编辑文本框和微调器全屏?

 <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="15dp"
    android:layout_weight="0.2"
    android:weightSum="1"
    android:orientation="horizontal" >


      <EditText    
        android:id="@+id/txtMobileNo"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_marginRight="45dp"
        android:layout_marginLeft="45dp"
        android:layout_height="wrap_content"
        style="?android:attr/buttonStyleSmall"
        android:gravity="left"     
        android:hint="@string/MobileNo"
        android:background="#ffffff"
        android:singleLine="true"/>

</LinearLayout>


    <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0.2"
            android:weightSum="1"
            android:orientation="horizontal" >

      <EditText  
        android:id="@+id/txtPinNo"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_marginRight="45dp"
        android:layout_marginLeft="45dp"
        android:layout_height="wrap_content"
        style="?android:attr/buttonStyleSmall"
        android:inputType="textPassword"
        android:gravity="left"      
        android:background="#ffffff"
        android:singleLine="true"
        android:hint="@string/PinNo"/>

</LinearLayout>


    <LinearLayout
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_weight="0.1"
             android:weightSum="1"
             android:orientation="horizontal" >

     <Spinner
        android:id="@+id/lgnspinner"
        android:paddingTop="12dp"
        android:paddingBottom="12dp"
        android:prompt="@string/network_prompt"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_marginTop="-15dp"
        android:layout_marginBottom="-17dp"
        android:layout_marginRight="41dp"
        android:layout_marginLeft="41dp"
        android:layout_height="wrap_content" />

  </LinearLayout>
4

0 回答 0