gpt4 book ai didi

java - 当设备方向更改为水平时,LinearLayout 按钮不出现?

转载 作者:行者123 更新时间:2023-12-01 13:32:57 26 4
gpt4 key购买 nike

这是一个 xml,其中 ScrollView 布局大小会有所不同,这意味着它将在单击按钮时缩放图像,但我的顶部页眉和页脚将始终位于相同位置,无论缩放值如何......

XML

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


<LinearLayout
android:id="@+id/layout_zoom_buttons"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<ImageView
android:id="@+id/btn_zoomIn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"

android:src="@drawable/zoomin1" />
<ImageView
android:id="@+id/btn_zoomout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/zoomin1" />


</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<com.example.imagetouchview.TouchImageView
android:id="@+id/imagezoom"
android:layout_width="fill_parent"
android:layout_height="400dp"
android:layout_gravity="center">
</com.example.imagetouchview.TouchImageView>
</ScrollView>
<LinearLayout
android:id="@+id/layout_buttons"
android:layout_width="fill_parent"
android:layout_height="wrap_content"


android:orientation="horizontal" >

<ImageView
android:id="@+id/btn_email_fatwa"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/zoomin1"
android:layout_weight="1"/>
<ImageView
android:id="@+id/btn_share_fatwa"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/zoomin1"
android:layout_weight="1"/>
<ImageView
android:id="@+id/btn_save_fatwa"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/zoomin1"
android:layout_weight="1"/>


</LinearLayout>


</LinearLayout>

此布局在垂直方向上很好,而当设备方向更改为水平时,底部按钮不可见。我正在关注 Salmans Ayub Answer For Image Zoomin and Out

最佳答案

我认为您已经以纵向模式(垂直)设计布局。现在要么你必须将其绑定(bind)通过在 Activity list 中添加此行 android:screenOrientation="portrait"来启用纵向模式,

或者

您必须通过以下链接将其设计为横向模式 - Android: alternate layout xml for landscape mode

关于java - 当设备方向更改为水平时,LinearLayout 按钮不出现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21451142/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com