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 と縦向きの 2 つのレイアウトを作成し、layout/activity_sam.xmlそれぞれが独自の画像と独自のレイアウト パラメータを指定します。manifest無効になっているかどうかも確認してください。方向転換。

于 2013-10-30T07:08:23.553 に答える
0

コードをデバッグしましたが、メソッドonConfigurationChanged()が呼び出されません。マニフェスト ファイル内のアクティビティに指定されていないためandroid:configChanges、アクティビティ自体が処理する 1 つ以上の構成変更を処理します。

それから私は追加します

  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 に答える
0

Androidフォンをお持ちの場合は、それをチェックしてください。エミュレーターが回転で動作しない場合があります。

于 2013-10-30T06:58:52.917 に答える
0

両方の背景画像に同じ名前を付け、縦向きにしたい画像を通常の描画可能なフォルダーに入れ、横向きにしたい画像を「drawable-land」という名前の新しいフォルダーに入れます。onConfigurationChanged メソッドは必要ありません。これがうまくいくことを願っています。下手な英語でごめんなさい。

于 2013-10-30T07:28:40.460 に答える