我试图找出如何使我的布局有以下编码按钮留在他们的位置,尽管未来的动态活动,可能通过保留一个自由空间。在菜单按钮和其他三个按钮之间将是一个按钮网格,具有随机大小和基于动态创建的预选的随机数量。但无论我想要多少按钮或尺寸,main.xml中设计的这四个按钮都保持在适当的位置。
<?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" >
<Button
android:id="@+id/menu"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="MENU" />
这是值得关注的领域。我希望将菜单按钮(上方)始终连接到屏幕顶部,并且步骤,暂停和模拟按钮(下方)始终位于屏幕的最底部。
<Button
android:id="@+id/step"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/grid"
android:layout_centerHorizontal="true"
android:text="STEP" />
<Button
android:id="@+id/pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/grid"
android:layout_toLeftOf="@id/step"
android:text="PAUSE" />
<Button
android:id="@+id/sim"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/grid"
android:layout_toRightOf="@id/step"
android:text="SIMULATE" />
<SeekBar
android:id="@+id/speed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/sim"
android:layout_alignParentLeft="true"/>
</RelativeLayout>
我只想出一个解决方案我自己的问题。 我必须在其他三个按钮上的菜单按钮之后使用“android:layout_alignParentBottom =”true“,现在任何动态添加的按钮都可以根据需要放置在两者之间。
该网站不会让我回答我自己的问题。
答案 0 :(得分:1)
使RelativeLayout成为LinearLayout。给所有按钮“android:layout_weight =”0“”。然后在所需的空白处添加一个具有android:layout_height =“0”和“android:layout_weight =”1“”的视图。如果我理解你的问题,那应该这样做。