+ 4
Can anybody explain this
package com.example.helloworld; import android.os.Bundle; import android.app.Activity; import android.util.Log;
2 Réponses
+ 3
You're defining a package named "com.example.helloworld", and you're using some classes that are already defined in other packages:
- class Bundle in package android.os
- class Activity in package android.app
- class Log in package android.util
+ 4
well tnku