0

Galaxy SII (Android 4.0.4) を使用して特定のアクティビティで [戻る] ボタンをクリックすると、homeScreen に移動するアプリがありますが、使用時に finish() メソッドを呼び出さない以前のすべてのアクティビティに正常に戻ります。 HTC EVO (アンドロイド 2.3.5)。

これは Android 版の機能だと思っていましたが、より安全になりました。それらのバージョンのエミュレーターを使用してみましたが、結果は同じでした。アンドロイドのバージョンの問題です。

ここに画像を添付しますので、何が問題なのかは明らかです。

メインスクリーン 第二の活動 ここに画像の説明を入力 ここに画像の説明を入力

この位置で戻るボタンをクリックすると、アプリからホーム画面に移動します。それがGalaxy S3です

しかし、Android 2.3.5では、これがどのように機能するかです。

ここに画像の説明を入力 ここに画像の説明を入力 ここに画像の説明を入力 ここに画像の説明を入力

2.3.5 バージョンでは、クリックして戻ると、すべてのアクティビティがフォアグラウンドに戻ります。その問題についての手がかりはありますか?

マニフェストのコード:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.silm.sfa"
android:versionCode="2"
android:versionName="1.1" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
    android:name="com.silm.sfa.app.App"
    android:allowBackup="true"
    android:icon="@drawable/sfa_new_version_logo"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar" >
    <activity
        android:name=".Splash"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Login"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar" >
    </activity>
    <activity
        android:name=".Prefs"
        android:label="@string/config"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".Summary"
        android:label="@string/resumen"
        android:theme="@android:style/Theme.Dialog" 
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name="com.jvra.signature.SignatureActivity"
        android:configChanges="orientation"
        android:theme="@android:style/Theme.Dialog"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".System"
        android:theme="@android:style/Theme.NoTitleBar"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".find.Finder"
        android:configChanges="orientation"
        android:theme="@android:style/Theme.NoTitleBar"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".Dashboard"
        android:theme="@android:style/Theme.NoTitleBar"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".Help"
        android:label="@string/help"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".bprocess.OrdersRecipe"
        android:label="@string/help"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".bprocess.DebitNotesProcess"
        android:label="@string/help"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".bprocess.CreditNotesProcess"
        android:label="@string/help"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".bprocess.StatementProcess"
        android:label="@string/help"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".bprocess.Products"
        android:label="@string/help"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".signature.SignatureActivity"
        android:label="@string/help"
        android:screenOrientation="landscape" >
    </activity>
</application>

</manifest>

戻るボタン メソッドのコード:

@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{

    if( event.getAction() == KeyEvent.ACTION_DOWN )
        if( keyCode == KeyEvent.KEYCODE_BACK )
        {
            DetailFragment detail = (DetailFragment) getSupportFragmentManager().findFragmentByTag(FIND_DETAIL_FRAGMENT);
            if( detail != null && detail.isVisible() )
                searchBar.setEnabledSearchButton(true);
        }
    return super.onKeyDown(keyCode, event);
}
4

2 に答える 2

1

これで試してみてください;)

@Override       
public boolean onKeyDown(int keyCode, KeyEvent event) {

        if (keyCode == KeyEvent.KEYCODE_BACK) 
        {
            // Call main activity or whatever you want :)
        }

        return super.onKeyDown(keyCode, event);
    }

すべてのアクティビティでこのメソッドを呼び出す必要があります。

于 2013-05-08T16:30:36.410 に答える