2013-04-07 105 views
0

我想创建适用于每种类型平板电脑的以下布局。我知道我们可以通过将它们放置在可绘制和编辑它们来设置不同的设置,但是有没有其他方法可以实现这一点? 以下是我的本意为7寸大小的所有药片进行创建: enter image description here优化alertDialog布局?

下面是我的XML代码:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
    > 
<TextView 
    android:id="@+id/widget38" 
    android:layout_width="480dp" 
    android:layout_height="45dp" 
    android:background="@color/White" 
    android:text="Reminder" 
    android:textSize="20dp" 
    android:textColor="@color/Black" 
    android:layout_alignParentTop="true" 
    android:layout_alignParentLeft="true" /> 

<TextView 
    android:id="@+id/label" 
    android:layout_width="476dp" 
    android:layout_height="70dp" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentRight="true" 
    android:layout_below="@+id/widget38" 
    android:background="@color/White" 
    android:text="DID you have your Pill?" 
    android:textColor="@color/Black" 
    android:textSize="40dp" /> 

<Button 
    android:id="@+id/yes" 
    android:layout_width="224dp" 
    android:layout_height="161dp" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true" 
    android:layout_alignRight="@+id/widget38" 
    android:layout_below="@+id/label" 
    android:background="@color/Green" 
    android:text="Yes" /> 

<Button 
    android:id="@+id/no" 
    android:layout_width="239dp" 
    android:layout_height="161dp" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentRight="true" 
    android:layout_below="@+id/label" 
    android:layout_toRightOf="@+id/widget38" 
    android:background="@color/Red" 
    android:text="No/Cancel" /> 

</RelativeLayout> 

我的Java代码,创建警报:

Button button=(Button)findViewById(R.id.button1); 
     button.setOnClickListener(new View.OnClickListener() { 

      @SuppressWarnings("deprecation") 
      @Override 
      public void onClick(View v) { 
       // TODO Auto-generated method stub 


       View view= getLayoutInflater().inflate(R.layout.custom, null); 
       final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this); 


       builder.setView(view); 
       // set the custom dialog components - text, image and button 
        TextView t=(TextView)view.findViewById(R.id.widget38); 
       TextView text = (TextView)view.findViewById(R.id.label); 

       Button yesButton = (Button) view.findViewById(R.id.yes); 
       Button noButton=(Button)view.findViewById(R.id.no); 



       final AlertDialog dialog=builder.create(); 

       noButton.setOnClickListener(new OnClickListener() { 
        @Override 
        public void onClick(View v) { 
         dialog.dismiss(); 
        } 
       }); 



       yesButton.setOnClickListener(new OnClickListener() { 
        @Override 
        public void onClick(View v) { 
         dialog.dismiss(); 
        } 
       }); 

      Display display = getWindowManager().getDefaultDisplay(); 
       int width = display.getWidth(); 
       int height = display.getHeight(); 

       dialog.show(); 
       dialog.getWindow().setLayout(width, height); 

根据答案编辑代码,并且它在eclipse IDE中正确显示,但是在模拟器上尝试时看起来非常不同。无法recitify..Please帮助。 output that appears in nexus 7 emulator however it shows correctly in eclipse xml editor

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    > 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" 
     > 

     <TextView 
      android:id="@+id/ReminderMessage" 
      android:layout_width="fill_parent" 
      android:layout_height="match_parent" 
      android:background="@color/Aqua" 
     android:textColor="@color/Black" 
    android:textSize="10dp" 
      /> 

    </RelativeLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="3" 
     android:baselineAligned="false" 
     android:layout_alignParentLeft="true" 
    android:layout_alignParentRight="true" 

     > 

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#0F0" > 

      <Button 
       android:id="@+id/yes" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:text="Yes" 
      android:background="@color/Green" 
      android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true" 
    android:layout_below="@+id/ReminderMessage" 


       > 
      </Button> 



     </RelativeLayout> 

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#F00" > 


      <Button 
       android:id="@+id/no" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:text="No/Cancel" 
      android:background="@color/Red" 
      android:layout_alignParentBottom="true" 
    android:layout_alignParentRight="true" 
    android:layout_below="@+id/ReminderMessage" 
       > 
      </Button> 

     </RelativeLayout> 

    </LinearLayout> 

</LinearLayout> 
+0

我的错,我忘了渲染时的线性布局中使用反向权重:http://stackoverflow.com/questions/8381021/why-does-the-linearlayout-attribute-layout-weight-seem-to - 与w相反。只需切换顶部/底部部分的权重,它应该按照inteneded工作 – munch1324 2013-04-07 19:48:24

+0

啊现在可以工作了...它在Eclipse中显示的不同,但它显示了设备中的预期方式..这是有目的地通过谷歌或WA错误?..再次感谢很多.... – 2013-04-08 10:03:30

+0

我不确定是诚实的。我知道它也欺骗了我几次:-) – munch1324 2013-04-08 11:26:49

回答

1

编辑:修改为示出了用于线性布局逆加权。

如果你想有一个不同的外观不同尺寸,布局/布局大/布局XLARGE文件夹将是定义警报特异于不同尺寸范围(例如7" )的最简单的方法。

如果您使用Eclipse作为您的IDE,请选择“所有屏幕”,以便对各种设备进行良好的概述。

除此之外,如果您有特定的比率,线性布局是一种简单的方法来定义这里是你的线性布局(它将保持屏幕尺寸的比例):

enter image description here

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="3" > 

    </RelativeLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" > 

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#0F0" > 

     </RelativeLayout> 

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#F00" > 

     </RelativeLayout> 

    </LinearLayout> 

</LinearLayout> 
+0

噢好吧,不知道有一个预览屏幕选项在adt ....感谢吨! – 2013-04-07 16:38:41

+0

根据您的答案进行了编辑,但它并未在设备上正确显示,尽管它在eclipse IDE中正确显示。细节在上面编辑。 – 2013-04-07 19:25:05