嗨,在我的应用程序中有6个按钮,每个都有一个背景图像,问题是当设置为背景时图像变得模糊。我已经尝试了所有尺寸但问题仍然相同。我也尝试将其设置为ImageView,Button和ImageButton
如果我将其设置为背景,那么图像的大小应该是多少。
这是我的xml,以下是它的样子.. http://imgur.com/DhHamds
<?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">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="1">
<ImageButton
android:id="@+id/cstatn"
android:layout_width="0dp"
android:scaleType="fitXY"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ImageButton
android:id="@+id/cclinic"
android:layout_width="0dp"
android:scaleType="fitXY"
android:layout_height="match_parent"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:orientation="horizontal"
android:layout_weight="1" >
<ImageButton
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1" />
<ImageButton
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:orientation="horizontal"
android:layout_weight="1" >
<ImageButton
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1" />
<ImageButton
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
图像被拉伸,因为按钮的大小与图像的大小不同。要在不拉伸的情况下将图像用作背景,请将图像转换为9patch文件。互联网上有很多信息说明它是如何使用的,例如this one。