2017-07-08 19 views
0

Androidで複数の画面に問題があります。Androidの複数画面

私はこのWebページ読んだ後:私は小さい画面を追加することで、複数の画面レイアウトに自分の活動を変更しようとしました

https://developer.android.com/guide/practices/screens_support.html developer.android.com/training/multiscreen/screensizes.htmlを幅レイアウトディレクトリ:

レイアウト-sw320dp

レイアウトsw320dpランド

レイアウトsw480dp

レイアウトsw480dpランド

レイアウトsw600dp

レイアウトsw600dpランド

レイアウトsw720dp

レイアウトsw720dpランド

私の活動:

はactivity_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      xmlns:tools="http://schemas.android.com/tools" 
      android:id="@+id/activity_main" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:background="@color/background" 
      tools:context="com.example.aref.calculator.MainActivity" 
      android:orientation="vertical"> 


<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:id="@+id/lin" 
    android:orientation="vertical"> 


    <EditText 
     android:id="@+id/etInput" 
     android:layout_height="163dp" 
     android:background="@android:color/transparent" 
     android:cursorVisible="false" 
     android:gravity="end|center" 
     android:hint="@string/zero" 
     android:inputType="numberSigned" 
     android:padding="16dp" 
     android:scrollHorizontally="true" 
     android:singleLine="true" 
     android:textColor="@android:color/black" 
     android:textColorHint="@android:color/darker_gray" 
     android:textCursorDrawable="@null" 
     android:textSize="50sp" 
     android:layout_width="match_parent" /> 


    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_margin="2dp" 
     android:orientation="horizontal"> 

     <LinearLayout 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 

      <Button 
       android:id="@+id/btnMc" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:background="@drawable/btn_selector" 
       android:text="@string/mc" /> 

      <Button 
       android:id="@+id/btnMemory" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector" 
       android:text="@string/nullMemory" /> 

      <Button 
       android:id="@+id/btnSeven" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/seven" /> 

      <Button 
       android:id="@+id/btnFour" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/four" /> 

      <Button 
       android:id="@+id/btnOne" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/one" /> 

      <Button 
       android:id="@+id/btnZero" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/zero" /> 

     </LinearLayout> 

     <LinearLayout 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 

      <Button 
       android:id="@+id/btnMPlus" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:background="@drawable/btn_selector" 
       android:text="@string/mPlus" /> 

      <Button 
       android:id="@+id/btnClear" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector1" 
       android:text="@string/clear" /> 

      <Button 
       android:id="@+id/btnEight" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/eight" /> 

      <Button 
       android:id="@+id/btnFive" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/five" /> 

      <Button 
       android:id="@+id/btnTwo" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/two" /> 

      <Button 
       android:id="@+id/btnPoint" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector1" 
       android:text="@string/point" /> 

     </LinearLayout> 

     <LinearLayout 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 

      <Button 
       android:id="@+id/btnMMinus" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:background="@drawable/btn_selector" 
       android:text="@string/mMinus" /> 

      <Button 
       android:id="@+id/btnAllClear" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector1" 
       android:text="@string/AllClear" /> 

      <Button 
       android:id="@+id/btnNine" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/nine" /> 

      <Button 
       android:id="@+id/btnSix" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/six" /> 

      <Button 
       android:id="@+id/btnThree" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector2" 
       android:text="@string/three" /> 

      <Button 
       android:id="@+id/btnEqual" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector1" 
       android:text="@string/equal" /> 

     </LinearLayout> 

     <LinearLayout 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 

      <Button 
       android:id="@+id/btnMr" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:background="@drawable/btn_selector" 
       android:text="@string/mr" /> 

      <Button 
       android:id="@+id/btnMod" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector3" 
       android:text="@string/mod" /> 

      <Button 
       android:id="@+id/btnDiv" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector3" 
       android:text="@string/div" /> 

      <Button 
       android:id="@+id/btnMul" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector3" 
       android:text="@string/mul" /> 

      <Button 
       android:id="@+id/btnPlus" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector3" 
       android:text="@string/plus" /> 

      <Button 
       android:id="@+id/btnMin" 
       android:layout_width="@dimen/btn_width_small" 
       android:layout_height="@dimen/btn_height_small" 
       android:layout_marginLeft="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginStart="@dimen/btn_marginLeft_marginStart" 
       android:layout_marginTop="@dimen/btn_margin_top" 
       android:background="@drawable/btn_selector3" 
       android:text="@string/minus" /> 

     </LinearLayout> 


    </LinearLayout> 

</LinearLayout> 
私の問題は、私はネクサス4またはネクサスSレイアウトに例えばデバイスを変更する場合、「レイアウトsw320dpは」私はネクサス5倍のレイアウトを設計している例えば

は不向きとなり

IMAGE: http://s8.picofile.com/file/8299930926/564684.png

答えて

0

あなたは固定幅のボタンを設定しています。これは、デバイス間でうまく機能することは決してありません。別の方法を使用してください。たとえば、均等に4つのボタンが必要な場合は、各行を線形レイアウトとして配置し、すべての0dp幅と1の重みを割り当てます。したがって、それらは同じ大きさになります。

+0

、複数の画面で[OK TNXをリニアレイアウトを作成し、使用することができます.soのweightsumを使うのか? ? – AREF

+0

すべてはレイアウト全体によって異なります。しかし、一般的に、固定された幅と高さは避けてください。 –

+0

ありがとうございます。体重の属性について簡単に説明できますか? – AREF

0

私のレイアウトはImageViewの、スイッチ、スピンナー、のようないくつかの他のelemntsを持っている場合は、私が行うために何をすべきか......、

関連する問題