1

我想放大一些视图,但在视图底部有一个按钮。我已经知道如何动态膨胀视图,然后膨胀其他膨胀视图下方的按钮。但是,当只有几个膨胀视图(导致组合视图占用的空间少于整个屏幕)时,按钮不会像我想要的那样位于页面底部。我的想法是,我需要通过将按钮设置为:android:layout_alignParentBottom 使按钮在相对布局的底部对齐(当我尝试这样做时,尽管应用程序崩溃了)

这是我所拥有的屏幕截图,然后是我想要的屏幕截图,您看到的所有项目都被膨胀到相对布局内的滚动视图上。我认为问题在于按钮被充气到滚动视图上,而滚动视图的大小仅在项目强制它是(不幸的是我太菜鸟不知道如何充气到视图的不同部分)

在此处输入图像描述

左侧图像的代码如下(我没有左侧视图的错误): parentView:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@drawable/blurybg"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">    
<ScrollView     
  android:layout_height="wrap_content" 
  android:id="@+id/scrollView1" 
  android:layout_width="fill_parent" >
<LinearLayout     
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:id= "@+id/parent_of_inflated_view_id">
</LinearLayout>   
</ScrollView>
</RelativeLayout>

childButton(其他视图与此类似)

<?xml version="1.0" encoding="utf-8"?>
<Button
xmlns:android="http://schemas.android.com/apk/res/android"
android:height="30dp"
android:layout_width="fill_parent"
android:background="@drawable/done"
android:layout_alignBottom ="@layout/availablerestaurants"
/>

用于创建充气机和充气按钮的 Java。其他充气视图与此类似(我当然使用相同的充气机)。我最后添加了充气按钮以使其位于视图的底部。

LayoutInflater theInflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
LinearLayout linLayout = (LinearLayout)findViewById(R.id.parent_of_inflated_view_id); 

    Button doneButtonCurrentRest=  (Button) theInflater.inflate(R.layout.done_button_availrest, null);
    linLayout.addView(doneButtonCurrentRest);

感谢您的帮助,亚当

4

1 回答 1

1

请检查我的代码。它应该按预期工作:

<?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" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

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

    <Button
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:layout_alignParentBottom="true" />

</RelativeLayout>

你的代码呢。我可以看到几个错误:

1)您应该android:layout_height为您的按钮指定。没有这个参数会抛出异常。您使用android:height但它与android:layout_height.

2)android:layout_alignBottom应该指向id,而不是布局。此外,我在按钮的单独布局中看不到此属性的用途。

更新

这是下面评论中问题的解决方案:

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

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

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

        <Button
            android:id="@+id/button"
            android:layout_width="match_parent"
            android:layout_height="30dp"
            android:layout_weight="0" />
    </LinearLayout>

</ScrollView>

请注意,我用于android:fillViewport="true"ScrollView,因此它可以填满整个屏幕。我也曾经正确地拉伸视图(你可以在这里android:layout_weight找到属性的解释 )。

于 2012-08-31T13:23:52.953 回答