我想放大和缩小布局中的所有图像。我见过许多问题,例如here和here,并试图实施它们,但我做不到。
请帮助我理解这一点。我的困惑是,为什么我会从相对布局扩展我的类,如上面的问题所述,我的意思是我在我的XML中有一个相对布局,我在内容视图中设置这个XML,但我怎么能抓住特定的相对布局使用这种方法。即使我从相对布局扩展了类,我如何在包含布局内部图像的活动中使用此类。
我的XML设置是这样的,任何人都可以告诉我我必须遵循的方法。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.cpec.farrukhtanveer.MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="130dp"
android:layout_marginRight="130dp"
android:background="@drawable/imageBackGround">
<ImageView
android:id="@+id/img_one"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="invisible"
android:src="@drawable/imageone"/>
<ImageView
android:id="@+id/img_two"
android:visibility="invisible"
android:layout_width="match_parent"
android:layout_height="imagetwo"/>
</RelativeLayout>
</RelativeLayout>
请帮助大家! 谢谢。 Umair
答案 0 :(得分:2)
由于没有人想出解决方案,我有点自己解决这个问题,并认为对于陷入这个问题的其他人来说这可能会有所帮助。基本指导来自here,其中作者为单个图像实现了放大和缩小,我们只需添加图像并处理其他初始化,如本教程中所述。
<强> ImageViewWithZoomClass:强>
private Drawable imageOne, imageTwo;
imageOne = context.getResources().getDrawable(R.drawable.icon1);
imageTwo = context.getResources().getDrawable(R.drawable.icon2);
.
.
imageOne.setBounds(0, 0, imageOne.getIntrinsicWidth(), imageOne.getIntrinsicHeight());
imageTwo.setBounds(0, 0, imageTwo.getIntrinsicWidth(), imageTwo.getIntrinsicHeight());
.
.
imageOne.draw(canvas);
imageTwo.draw(canvas);
由于我使用的是相对布局,我只是在我的 MainActivity 中使用了onClickListener
relativeLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
setContentView(new ImageViewWithZoom(getApplicationContext()));
}
});
和相对布局的XML如下所示:
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="130dp"
android:layout_marginRight="130dp"
android:background="@drawable/abc"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
>
<ImageView
android:id="@+id/img_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/roadandrailways"
android:visibility="invisible"/>
<ImageView
android:id="@+id/img_2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/capital"
android:visibility="invisible"/>
</RelativeLayout>
您可以在布局中添加多个图像。 多数民众赞成,希望它有所帮助。