Sha256: b87d22c2e30fd027727d0063e7eaa1312c7560102244a21df2f6f36a444cfba5

Contents?: true

Size: 1.33 KB

Versions: 76

Compression:

Stored size: 1.33 KB

Contents

/*
 ============================================================================
 Author	    : Anton Antonov
 Version	: 1.0
 Copyright  : Copyright (C) 2008 Rhomobile. All rights reserved.

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ============================================================================
 */

package com.rhomobile.rhodes.ui;

import com.rhomobile.rhodes.AndroidR;

import android.os.Bundle;

import android.app.Dialog;
import android.content.Context;

public class AboutDialog extends Dialog {

	public AboutDialog(Context context) {
		super(context);
	}

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// Be sure to call the super class.
		super.onCreate(savedInstanceState);

		setContentView(AndroidR.layout.dialog_activity);
	}

}

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
rhodes-2.0.0.beta7 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-2.0.0.beta6 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-2.0.0.beta4 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-2.0.0.beta3 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.5.5 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-2.0.0.beta2 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-2.0.0.beta1 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.5.4 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.5.3 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.5.2 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.5.1 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.5.0 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.4.2 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.4.1 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.4.0 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java
rhodes-1.2.2 platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java