我试图弄清楚如何使我的布局使以下编码按钮保持在它们的位置,尽管未来有动态活动,也许是通过保留一个可用空间。在菜单按钮和其他三个按钮之间将是一个按钮网格,其大小和数量都是随机的,基于动态创建的预选。但无论有多少按钮或大小,我都希望 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",现在任何动态添加的按钮都可以根据需要放置在两者之间。
该网站不会让我回答我自己的问题。