Skip to content

Instantly share code, notes, and snippets.

View FeherMarcell's full-sized avatar

Marcell Feher FeherMarcell

View GitHub Profile
@FeherMarcell
FeherMarcell / ApplicationInfo.java
Created October 1, 2012 16:20
AndroidLabor4HomeScreen
class ApplicationInfo {
/**
* The application name.
*/
CharSequence title;
/**
* The intent used to start the application.
*/
Intent intent;
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />