不同屏幕尺寸的线性布局

发布于 2024-12-11 19:39:17 字数 9687 浏览 0 评论 0原文

我有一个被滚动视图包围的线性布局,以便使其在较小的屏幕上可滚动。在线性布局中,我有 3 个子布局,它们也是线性布局。

这工作正常。但我也想支持更大的屏幕。目前,我在屏幕底部留下了更大的屏幕空间。我希望按钮(导航栏)始终位于底部。对于较大的屏幕(高度),我想在屏幕顶部添加一个空视图,该视图填充较大屏幕提供的空间。

我怎样才能做到这一点?我尝试了很多重量属性,但没有成功。

这里的布局:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="#8db9f6"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#8db9f6">
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_marginTop="8dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView
                android:text="test"
                android:id="@+id/test"
                android:paddingLeft="10dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <ImageButton
                android:id="@+id/btnName"
                android:scaleType="center"
                android:layout_width="60dp"
                android:layout_height="48dp"
                android:src="@android:drawable/ic_menu_edit">
            </ImageButton>
        </LinearLayout>
        <EditText
            android:id="@+id/edittest"
            android:editable="false"
            android:hint="@string/test"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
        </EditText>
        <TextView
            android:text="@string/optionalText"
            android:id="@+id/test1"
            android:paddingLeft="10dp"
            android:textSize="12dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        </TextView>
        <TextView
            android:id="@+id/space"
            android:layout_width="fill_parent"
            android:layout_marginTop="4dp"
            android:layout_height="3sp"
            android:background="#333142">
        </TextView>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_marginTop="5dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView
                android:text="TEST TESt"
                android:id="@+id/test2"
                android:paddingLeft="10dp"
                android:layout_marginTop="5dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <ProgressBar
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:visibility="gone"
                android:id="@+id/progressbar"/>
            <ImageButton
                android:id="@+id/btnPicture"
                android:scaleType="center"
                android:layout_width="60dp"
                android:layout_height="48dp"
                android:src="@android:drawable/ic_menu_edit">
            </ImageButton>
        </LinearLayout>
        <FrameLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:background="#ffffff"
            android:layout_gravity="center"
            android:layout_width="fill_parent"
            android:layout_height="150dip">
            <ImageView
                android:id="@+id/test3"
                android:layout_width="400dip"
                android:layout_height="150dip"
                android:layout_gravity="center"
                android:scaleType="fitCenter"
                android:src="@drawable/test1"/>
            <TextView
                android:id="@+id/text"
                android:layout_gravity="bottom"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="8dp"
                android:text="test test"/>
        </FrameLayout>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_gravity="bottom"
            android:layout_marginTop="3dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <Button
                android:id="@+id/scaleMinus"
                android:textSize="14dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="40dp"
                android:text="@string/zoomOut"/>
            <Button
                android:id="@+id/scalePlus"
                android:textSize="14dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="40dp"
                android:text="@string/zoomIn"/>
        </LinearLayout>
        <TextView
            android:id="@+id/balken"
            android:layout_width="fill_parent"
            android:layout_marginTop="4dp"
            android:layout_height="3sp"
            android:background="#333142">
        </TextView>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_marginTop="5dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView
                android:text="test test"
                android:id="@+id/test3"
                android:paddingLeft="10dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <EditText
                android:id="@+id/test4"
                android:editable="false"
                android:layout_width="100dp"
                android:layout_height="wrap_content">
            </EditText>
            <TextView
                android:text="test"
                android:id="@+id/mtest4"
                android:paddingLeft="10dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <ImageButton
                android:id="@+id/test5"
                android:scaleType="center"
                android:layout_width="60dp"
                android:layout_height="48dp"
                android:src="@android:drawable/ic_menu_edit">
            </ImageButton>
        </LinearLayout>
        <TextView
            android:id="@+id/balken"
            android:layout_width="fill_parent"
            android:layout_marginTop="4dp"
            android:layout_height="3sp"
            android:background="#333142">
        </TextView>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_gravity="bottom"
            android:background="#000000"
            android:paddingTop="5dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <Button
                android:id="@+id/save"
                android:textSize="18dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="60dp"
                android:text="@string/save"/>
            <Button
                android:id="@+id/cancel"
                android:textSize="18dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="60dp"
                android:text="@string/abort"/>
        </LinearLayout>
    </LinearLayout>
</ScrollView>

I have a linearLayout which is surrounded by a scrollView in order to make it for smaller screens scrollable. In the linear layout I have 3 childs which are also linearlayout.

This is working fine. But I also want to support larger screens. At the moment I get with a larger screen space left on the bottom of the screen. I want to have the buttons (navigation bar) be always at the bottom. for larger screens (height) I would like to add at the top of the screen an empty view which fills out the space that is more provided by the larger screen.

How can I achieve that? i tried a lot with weight attribute but didnt get it working.

Here the layout:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="#8db9f6"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#8db9f6">
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_marginTop="8dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView
                android:text="test"
                android:id="@+id/test"
                android:paddingLeft="10dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <ImageButton
                android:id="@+id/btnName"
                android:scaleType="center"
                android:layout_width="60dp"
                android:layout_height="48dp"
                android:src="@android:drawable/ic_menu_edit">
            </ImageButton>
        </LinearLayout>
        <EditText
            android:id="@+id/edittest"
            android:editable="false"
            android:hint="@string/test"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
        </EditText>
        <TextView
            android:text="@string/optionalText"
            android:id="@+id/test1"
            android:paddingLeft="10dp"
            android:textSize="12dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        </TextView>
        <TextView
            android:id="@+id/space"
            android:layout_width="fill_parent"
            android:layout_marginTop="4dp"
            android:layout_height="3sp"
            android:background="#333142">
        </TextView>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_marginTop="5dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView
                android:text="TEST TESt"
                android:id="@+id/test2"
                android:paddingLeft="10dp"
                android:layout_marginTop="5dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <ProgressBar
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:visibility="gone"
                android:id="@+id/progressbar"/>
            <ImageButton
                android:id="@+id/btnPicture"
                android:scaleType="center"
                android:layout_width="60dp"
                android:layout_height="48dp"
                android:src="@android:drawable/ic_menu_edit">
            </ImageButton>
        </LinearLayout>
        <FrameLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:background="#ffffff"
            android:layout_gravity="center"
            android:layout_width="fill_parent"
            android:layout_height="150dip">
            <ImageView
                android:id="@+id/test3"
                android:layout_width="400dip"
                android:layout_height="150dip"
                android:layout_gravity="center"
                android:scaleType="fitCenter"
                android:src="@drawable/test1"/>
            <TextView
                android:id="@+id/text"
                android:layout_gravity="bottom"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="8dp"
                android:text="test test"/>
        </FrameLayout>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_gravity="bottom"
            android:layout_marginTop="3dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <Button
                android:id="@+id/scaleMinus"
                android:textSize="14dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="40dp"
                android:text="@string/zoomOut"/>
            <Button
                android:id="@+id/scalePlus"
                android:textSize="14dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="40dp"
                android:text="@string/zoomIn"/>
        </LinearLayout>
        <TextView
            android:id="@+id/balken"
            android:layout_width="fill_parent"
            android:layout_marginTop="4dp"
            android:layout_height="3sp"
            android:background="#333142">
        </TextView>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_marginTop="5dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView
                android:text="test test"
                android:id="@+id/test3"
                android:paddingLeft="10dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <EditText
                android:id="@+id/test4"
                android:editable="false"
                android:layout_width="100dp"
                android:layout_height="wrap_content">
            </EditText>
            <TextView
                android:text="test"
                android:id="@+id/mtest4"
                android:paddingLeft="10dp"
                android:textStyle="bold"
                android:textSize="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            </TextView>
            <View
                android:layout_width="wrap_content"
                android:layout_height="0dip"
                android:layout_weight="1"/>
            <ImageButton
                android:id="@+id/test5"
                android:scaleType="center"
                android:layout_width="60dp"
                android:layout_height="48dp"
                android:src="@android:drawable/ic_menu_edit">
            </ImageButton>
        </LinearLayout>
        <TextView
            android:id="@+id/balken"
            android:layout_width="fill_parent"
            android:layout_marginTop="4dp"
            android:layout_height="3sp"
            android:background="#333142">
        </TextView>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_gravity="bottom"
            android:background="#000000"
            android:paddingTop="5dp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <Button
                android:id="@+id/save"
                android:textSize="18dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="60dp"
                android:text="@string/save"/>
            <Button
                android:id="@+id/cancel"
                android:textSize="18dp"
                android:layout_weight="1"
                android:layout_gravity="bottom"
                android:layout_width="fill_parent"
                android:layout_height="60dp"
                android:text="@string/abort"/>
        </LinearLayout>
    </LinearLayout>
</ScrollView>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

说不完的你爱 2024-12-18 19:39:17

将整个布局包装在相对布局中。使用相对布局作为根元素,并将包含按钮的线性布局设置为layout_alignParentBottom =“true”,并将ScrollView设置为layout_alignParentTop =“true”。

包含按钮的 LinearLayout 和 ScrollView 应该是relativelayout 的直接子级。

<RelativeLayout
     android:layout_width="fill_parent"
     android:layout_height="fill_parent">
         <LinearLayout <-- containing the layout minus the buttons
               android:id="@+id/SV"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:layout_alignParentTop="true">
            <The Rest Of The Layout>
         </LinearLayout>
         <LinearLayout
               android:id="@+id/LLButtons"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:layout_alignParentBottom="true">
          <Buttons>
          </LinearLayout>
</ScrollView>

如果您希望按钮始终位于屏幕底部,请使用alignParentBottom。如果您希望按钮始终位于滚动视图的底部alignBelow =“@id/SV”

Wrap the entire layout in a Relative Layout. Use a relative layout as your root element and set the Linear Layout containing your buttons to layout_alignParentBottom="true" and the ScrollView set to layout_alignParentTop="true".

The LinearLayout containing the buttons and the ScrollView should be direct children of the RelativeLayout.

<RelativeLayout
     android:layout_width="fill_parent"
     android:layout_height="fill_parent">
         <LinearLayout <-- containing the layout minus the buttons
               android:id="@+id/SV"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:layout_alignParentTop="true">
            <The Rest Of The Layout>
         </LinearLayout>
         <LinearLayout
               android:id="@+id/LLButtons"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:layout_alignParentBottom="true">
          <Buttons>
          </LinearLayout>
</ScrollView>

If you want the buttons to be always at the bottom of the screen alignParentBottom. If you want the buttons to always be at the bottom of the scrollview alignBelow="@id/SV"

硬不硬你别怂 2024-12-18 19:39:17

内部 LinearLayout 中的 android:layout_height="wrap_content" 是你的麻烦,将其更改为“fill_parent”应该会有所帮助。一般来说,您可能希望使用 HierarchyViewer 来帮助解决此类布局问题。

android:layout_height="wrap_content" in your inner LinearLayout is your trouble here, changing it to 'fill_parent' should help. In general, you may want to use hierarchyviewer to help troubleshoot layout issues like this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文