0

我有一个包含背景图像的活动,但是当方向变为横向时,我必须更改图像。为此,我添加了 onConfigurationchange()。但它不起作用。图像没有改变。请帮助我

SamActivity.java

package com.example.samworkshop;

import android.os.Bundle;
import android.app.Activity;
import android.content.res.Configuration;
import android.view.Menu;
import android.widget.Button;
import android.widget.RelativeLayout;

    public class SamActivity extends Activity {

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_sam);

        }

        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.sam, menu);
            return true;
        }

        @Override
        public void onConfigurationChanged(Configuration newConfig) {
            super.onConfigurationChanged(newConfig);
            RelativeLayout layout =(RelativeLayout)findViewById(R.id.sam);
            // Checks the orientation of the screen
            if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
                            layout.setBackgroundResource(R.drawable.sam_back_land);
            } else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
                layout.setBackgroundResource(R.drawable.sam_back);
            }
        }
    }

activity_sam.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/sam"
    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/sam_back"
    tools:context=".SamActivity" >

    <Button
        android:id="@+id/button1"
        android:layout_width="250dp"
        android:layout_height="75dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="39dp"
        android:background="@drawable/buttonsel" />

</RelativeLayout>
4

4 回答 4

1

如果您的图像是静态的(1 个纵向图像和 1 个横向图像),您不应该在 java 中这样做,而是创建两个布局,一个用于横向layout-land/activity_sam.xml ,一个用于纵向,layout/activity_sam.xml每个都指定自己的图像和自己的布局参数,还要检查manifest它是否禁用方向改变。

于 2013-10-30T07:08:23.553 回答
0

如果你有安卓手机,那就试试吧。有时模拟器不支持旋转。

于 2013-10-30T06:58:52.917 回答
0

为两个背景图像赋予相同的名称,并将您想要作为纵向的图像放入常规可绘制文件夹中,将您想要作为横向的图像放入名为“drawable-land”的新文件夹中。不需要 onConfigurationChanged 方法。我希望这会奏效。抱歉英语不好。

于 2013-10-30T07:28:40.460 回答
0

调试了你的代码,你的方法onConfigurationChanged()没有被调用。因为您没有android:configChanges在清单文件中指定您的活动,该文件处理活动将自行处理的一个或多个配置更改。

然后我添加

  android:configChanges="keyboardHidden|orientation|screenSize"

在您的活动标签下的清单文件中,它就像一个魅力:)

像这样

 <activity
            android:name="SamActivity "
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.Light.NoTitleBar" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
于 2013-10-30T07:15:12.523 回答