How to connect activities (android studio 1.2) -
the biggest problem of tutorials earlier version of android - , solutions don't work on as1.2. , word "deprecated" confusing android newbie.
i'm trying simple app - mainactivity 1 menu option - settings.
so create new project (template blank activity) , new -> activity -> settings activity. when run app main activity appears on screen, menu has 1 option setting - doesn't work - expected, because didn't add code mainactivity. after 5 days of digging , copy pasting "solutions" i'm still on same point. no reaction - still have 2 not connected activities.
i'm sure have add code here:
public boolean onoptionsitemselected(menuitem item) { // handle action bar item clicks here. action bar // automatically handle clicks on home/up button, long // specify parent activity in androidmanifest.xml. int id = item.getitemid(); //noinspection simplifiableifstatement if (id == r.id.action_settings) { // tb: here should setting activity shown return true; } return super.onoptionsitemselected(item); } }
the best code found (the clear):
if (id == r.id.action_settings) { intent intent = new intent(this, settingsactivity.class); startactivity(intent); return true; }
but - no reaction...
* updated *
manifest:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="pl.b6a.test4" > <application android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <activity android:name=".mainactivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <activity android:name=".settingsactivity" android:label="@string/title_activity_settings" android:parentactivityname=".mainactivity" > <meta-data android:name="android.support.parent_activity" android:value="pl.b6a.test4.mainactivity" /> </activity> </application> </manifest>
* updated 2 *
i found pressing settings menu item app isn't doing nothing crashing... maybe hint?
* logs * gradle console:
executing tasks: [:app:assembledebug] configuration on demand incubating feature. :app:prebuild up-to-date :app:predebugbuild up-to-date :app:checkdebugmanifest :app:prereleasebuild up-to-date :app:preparecomandroidsupportappcompatv72211library up-to-date :app:preparecomandroidsupportsupportv42211library up-to-date :app:preparedebugdependencies :app:compiledebugaidl up-to-date :app:compiledebugrenderscript up-to-date :app:generatedebugbuildconfig up-to-date :app:generatedebugassets up-to-date :app:mergedebugassets up-to-date :app:generatedebugresvalues up-to-date :app:generatedebugresources up-to-date :app:mergedebugresources up-to-date :app:processdebugmanifest :app:processdebugresources :app:generatedebugsources :app:processdebugjavares up-to-date :app:compiledebugjava note: input files use or override deprecated api. note: recompile -xlint:deprecation details. :app:compiledebugndk up-to-date :app:compiledebugsources :app:predexdebug up-to-date :app:dexdebug :app:validatedebugsigning :app:packagedebug :app:zipaligndebug :app:assembledebug build successful total time: 24.012 secs
adb logs:
waiting device. target device: samsung-gt_i9070-fexxxxxxxxxxxxxxxxxxxxxxxxxxxxx uploading file local path: c:\users\tombrz\androidstudioprojects\test4\app\build\outputs\apk\app-debug.apk remote path: /data/local/tmp/pl.b6a.test4 no apk changes detected. skipping file upload, force stopping package instead. device shell command: force-stop pl.b6a.test4 launching application: pl.b6a.test4/pl.b6a.test4.mainactivity. device shell command: start -n "pl.b6a.test4/pl.b6a.test4.mainactivity" -a android.intent.action.main -c android.intent.category.launcher starting: intent { act=android.intent.action.main cat=[android.intent.category.launcher] cmp=pl.b6a.test4/.mainactivity }
remove
return true
from if clause { } bring outside or make false
Comments
Post a Comment