<linearLayoutandroID:layout_wIDth="fill_parent"androID:layout_height="fill_parent"androID:orIEntation="vertical" ><EditText androID:ID="@+ID/editText" androID:layout_wIDth="match_parent" androID:layout_height="85dp" androID:ems="10" androID:inputType="textPostalAddress" androID:text="neshto"> <requestFocus /></EditText><linearLayout androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_gravity="center_horizontal" > <button androID:ID="@+ID/buttonOk" androID:layout_wIDth="75dp" androID:layout_height="wrap_content" androID:layout_gravity="center_horizontal" androID:layout_weight="0.5" androID:text="Ok" /> <button androID:ID="@+ID/buttonCancel" androID:layout_wIDth="75dp" androID:layout_height="wrap_content" androID:layout_gravity="center_horizontal" androID:layout_weight="0.5" androID:text="Cancel" /></linearLayout><linearLayout androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" ></linearLayout><Spinner androID:ID="@+ID/size" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" /><Spinner androID:ID="@+ID/color" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content"/>
我不能用我正在寻找的结果发布图像,但是我想要两个按钮Ok和Cancel在下面,两个微调器几乎直到文本字段.但我无法处理这些布局.有人能给我一个想法吗?我已经尝试了很多次,但它仍然没有按我想要的方式进行.
解决方法 使用relativeLayout而不是linearLayout作为布局容器:<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" > <EditText androID:ID="@+ID/editText" androID:layout_wIDth="match_parent" androID:layout_height="85dp" androID:ems="10" androID:inputType="textPostalAddress" androID:text="neshto" > <requestFocus /> </EditText> <Spinner androID:layout_below="@+ID/editText" androID:ID="@+ID/size" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" /> <Spinner androID:layout_below="@+ID/size" androID:ID="@+ID/color" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" /> <linearLayout androID:layout_alignParentBottom="true" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_gravity="center_horizontal" > <button androID:ID="@+ID/buttonOk" androID:layout_wIDth="75dp" androID:layout_height="wrap_content" androID:layout_gravity="center_horizontal" androID:layout_weight="0.5" androID:text="Ok" /> <button androID:ID="@+ID/buttonCancel" androID:layout_wIDth="75dp" androID:layout_height="wrap_content" androID:layout_gravity="center_horizontal" androID:layout_weight="0.5" androID:text="Cancel" /> </linearLayout></relativeLayout>总结
以上是内存溢出为你收集整理的Android – 如何使用linearlayout放置按钮和微调器?全部内容,希望文章能够帮你解决Android – 如何使用linearlayout放置按钮和微调器?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)