我使用按钮创建一个应用程序,如果是,将重定向到此布局 点击。但问题是,我无法缩放图像。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout
<Linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:src="@drawable/keutamaandua"
android:layout_width="match_parent"
android:layout_height="match_parent" /></LinearLayout>
答案 0 :(得分:0)
拥有wrap_content
孩子的match_parent
父母没有多大意义,因为你没有给出任何约束。
您应该使用match_parent
作为根布局:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout
<Linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
答案 1 :(得分:0)
默认情况下,ImageView没有缩放功能。您可以找到library that provides a widget that does或只需点按即可缩放like in this example。