我在缩放ImageView时遇到问题。图片是缩放的,但我认为它看不到下面的按钮,这就是为什么它仍然很大并将按钮从屏幕上移开。我试过了
android:layout_above="@id/q">
但它不起作用,因为按钮的声明在imageview下面。
这是我的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativelayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical">
<ImageView
android:id="@+id/logoimage"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:src="@drawable/logoduuuze_03"
android:layout_marginBottom="30dp"
android:layout_marginTop="30dp"
android:adjustViewBounds="true"
android:layout_alignParentTop="true"
android:scaleType="fitStart">
</ImageView>
<Button
android:id="@+id/q"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/logoimage"
android:layout_alignBottom="@id/logoimage"
android:layout_alignParentBottom="true"
android:text="button"
android:layout_centerHorizontal="true"
android:layout_below="@id/logoimage">
</Button>
</RelativeLayout>
我只想在屏幕上显示imageview和按钮,但只是稍微小一些。 如何让imageview“可见”?还是maby有另一种方式?
我将非常感谢任何帮助。
答案 0 :(得分:1)
你应该改变这个
android:layout_below="@id/logoimage"
到
android:layout_below="@+id/logoimage"
用于按钮。
也
android:layout_above="@id/q"
到
android:layout_above="@+id/q"
检查一下..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativelayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical" >
<ImageView
android:id="@+id/logoimage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginBottom="30dp"
android:layout_marginTop="30dp"
android:adjustViewBounds="true"
android:scaleType="fitStart"
android:src="@drawable/ic_launcher" >
</ImageView>
<Button
android:id="@+id/q"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/logoimage"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="button" >
</Button>
</RelativeLayout>
答案 1 :(得分:1)
更改:
android:id="@+id/logoimage"
android:layout_height="wrap_content"
android:layout_width="match_parent"
到
android:id="@+id/logoimage"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
检查什么
android:layout_alignBottom
确实,
使此视图的下边缘与给定锚点视图ID的下边缘匹配