这里是ScrollView布局大小变化的xml意味着它会在按钮点击时缩放图像但我的顶部页眉和页脚将始终处于相同的位置而不管缩放值.......
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
答案 0 :(得分:1)
我认为您已在纵向模式(verticaly)中设计了布局。现在要么你必须绑定它 纵向模式通过在您的活动清单中添加此行android:screenOrientation =“portrait”,
OR
您必须按照以下链接设计横向模式 - Android: alternate layout xml for landscape mode