背景图片问题

时间:2016-04-26 07:01:27

标签: android

我尝试使用全屏图像创建背景,但只有灰色方块。

enter image description here

纠正: enter image description here

我使用android studio的new / image资产在项目中添加图像。

活动布局

 <?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"
        android:background="@drawable/mainbackground"
        tools:context="com.imagenia.rollaction.rollaction.MainActivity">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Al menu"
            android:id="@+id/boton"
            android:layout_centerVertical="true"
            android:layout_centerHorizontal="true" />
    </RelativeLayout>

清单 //我更改了主题

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen">
    <activity
        android:name=".MainActivity"
        android:screenOrientation="landscape">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".ActividadPrincipal"
        android:screenOrientation="landscape">


    </activity>
</application>

修改

我尝试在android图像按钮中直接添加png文件。但是有一个sema问题,图像按钮是灰色方块。

2 个答案:

答案 0 :(得分:1)

尝试将图像直接添加到res / drawable文件夹中。从原点复制并将其直接粘贴到drawable文件夹中。它应该工作。代码似乎是正确的。它应该加载背景图像。

答案 1 :(得分:0)

要创建具有自定义背景的按钮,您可以使用Android TextView代替Button,并使用android:background属性作为按钮图片,使用android:text作为按钮文字。< / p>