我有一个与Android UI设计相关的问题。
这就是我想要的: http://i.imgur.com/a7DLo4x.jpg
这就是我所拥有的: http://i.imgur.com/AnL3cHT.jpg
我发现了一篇关于此问题的熟悉帖子,但他们的解决方案并没有帮助我: Android background Image to fill screen
这是我的XML代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:alwaysDrawnWithCache="false">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imageView"
android:scaleType="center"
android:background="@drawable/bg" />
<!-- <ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/logoImage"
android:layout_gravity="center_horizontal"
android:background="@drawable/logo"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
-->
<TextView
android:layout_width="wrap_content"
android:layout_height="30dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Login"
android:id="@+id/loginBt"
android:layout_below="@+id/logoImage"
android:layout_alignStart="@+id/logoImage"
android:layout_marginTop="5dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="30dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Register"
android:id="@+id/registerBt"
android:layout_alignBottom="@+id/loginBt"
android:layout_alignRight="@+id/loginBt"
android:layout_alignEnd="@+id/logoImage"
android:layout_marginTop="5dp" />
<FrameLayout
android:id="@+id/loginFragment"
android:layout_width="fill_parent"
android:layout_height="match_parent">
</FrameLayout>
</RelativeLayout>
我也尝试使用android:scaleType =“centerCrop”
感谢您的时间。
答案 0 :(得分:1)
android:scaleType="center"
您需要android:scaleType="centerCrop"
答案 1 :(得分:1)
我认为您使用了错误的元素来填充ImageView。请避免使用背景元素。使用src(source)元素。它应该可以正常工作。
android:src