0

当我从 Eclipse 启动我的应用程序到我的手机时,它首先启动 Launcher,然后是我的主要活动。它成功地将一个变量传递给主活动。我检查用户名是否已记录在敬酒中。当我直接从手机启动我的应用程序时,它会直接进入主要活动;主要活动将变量注册为空。

我创建了一个测试应用程序,该应用程序执行与此启动器完全相同的功能;除了活动名称外,它们的清单是相同的;并且当我从 Eclipse 安装它时,该测试应用程序在手机上的功能是正确的。

这是一个真正的脑筋急转弯。

这是启动活动的代码:

public class SecureAppStarter extends Activity {


TextView report;
WebView input;
Context thisContext = this;
String thisValue, url;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.starter);
    initialize();


    WebViewClient rclient = new WebViewClient(){
        @Override
        public boolean shouldOverrideUrlLoading(WebView  view, String  url){
            return false;
        }
        @Override
        public void onLoadResource(WebView  view, String  url){ 
            input.getSettings().setJavaScriptEnabled(true);
            input.addJavascriptInterface(new CustomJavaScriptInterface(thisContext), "Android");
        }

        @Override
        public void onPageFinished(WebView view, String url){
            report.setText(""+thisValue);
            if (thisValue!= null){
                Intent passOn = new Intent("arbuckle.app.MainActivity");
                passOn.putExtra("username", thisValue);
                startActivity(passOn);
            }
        }
    };
    rclient.onPageFinished(input, url);
    input.setWebViewClient(rclient);
    input.loadUrl(url);
}


public class CustomJavaScriptInterface {
    Context mContext;

    CustomJavaScriptInterface(Context context) {

        mContext = context;
    }

    public void getValue(String value){
        thisValue = value;
    }
}

private void initialize() {
    report = (TextView) findViewById(R.id.tvViewName);
    input = (WebView) findViewById(R.id.wbWebAuth);
    url = "http://URL.of.data.com";
}
}

这是清单:

 <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name="SecureAppStarter"
            android:label="@string/app_name"
            android:configChanges="keyboardHidden|orientation">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
          <activity
            android:name=".ArbuckleAppActivity"
            android:label="@string/app_name"
            android:configChanges="keyboardHidden|orientation">
            <intent-filter>
                <action android:name="arbuckle.app.ArbuckleAppActivity" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>
4

1 回答 1

0

好吧,我想通了。

几周以来,我一直在安装/卸载应用程序的版本,主要活动是启动器。显然,它保存在 Android 缓存中的某个位置,并且它正在选择要启动的主要活动,即使它不再是启动器。

所以我完全卸载了该应用程序;并重新安装。现在它起作用了。

有没有人认为我解决了这个问题而不是解决它?我应该期待未来的进一步问题吗?

于 2012-08-27T17:19:16.817 回答