├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── app ├── build.gradle ├── proguard-project.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── ultramegatech │ │ └── ey │ │ ├── AboutFragment.java │ │ ├── ElementDetailsActivity.java │ │ ├── ElementDetailsFragment.java │ │ ├── ElementListActivity.java │ │ ├── ElementListFragment.java │ │ ├── ElementaryApplication.java │ │ ├── PeriodicTableActivity.java │ │ ├── SettingsActivity.java │ │ ├── SettingsFragment.java │ │ ├── provider │ │ ├── Element.java │ │ ├── Elements.java │ │ ├── Isotope.java │ │ └── Isotopes.java │ │ ├── util │ │ ├── CommonMenuHandler.java │ │ ├── ElementUtils.java │ │ ├── PreferenceUtils.java │ │ ├── SubtextValuesHelper.java │ │ └── UnitUtils.java │ │ └── widget │ │ ├── BlockSubtextValueListAdapter.java │ │ ├── ElementListAdapter.java │ │ ├── PeriodicTableBlock.java │ │ ├── PeriodicTableLegend.java │ │ ├── PeriodicTableView.java │ │ └── Zoomer.java │ ├── play │ ├── contactEmail │ ├── de │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── defaultLanguage │ ├── en-US │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── icon │ │ │ │ └── logo.png │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── promoGraphic │ │ │ │ └── promo.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── es │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── fr │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── it │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── ja │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── nb │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── nl │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── pt-BR │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ ├── ru │ │ ├── listing │ │ │ ├── featureGraphic │ │ │ │ └── feature.png │ │ │ ├── fulldescription │ │ │ ├── keywords │ │ │ ├── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── sevenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── shortdescription │ │ │ ├── tenInchScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── title │ │ └── whatsnew │ └── tr │ │ ├── listing │ │ ├── fulldescription │ │ ├── keywords │ │ ├── shortdescription │ │ └── title │ │ └── whatsnew │ └── res │ ├── drawable-hdpi │ ├── ic_video_black.png │ ├── ic_video_white.png │ ├── ic_wikipedia_black.png │ ├── ic_wikipedia_white.png │ └── icon.png │ ├── drawable-mdpi │ ├── ic_video_black.png │ ├── ic_video_white.png │ ├── ic_wikipedia_black.png │ ├── ic_wikipedia_white.png │ └── icon.png │ ├── drawable-xhdpi │ ├── ic_video_black.png │ ├── ic_video_white.png │ ├── ic_wikipedia_black.png │ ├── ic_wikipedia_white.png │ └── icon.png │ ├── drawable-xxhdpi │ ├── ic_video_black.png │ ├── ic_video_white.png │ ├── ic_wikipedia_black.png │ ├── ic_wikipedia_white.png │ └── icon.png │ ├── drawable-xxxhdpi │ ├── ic_video_black.png │ ├── ic_video_white.png │ ├── ic_wikipedia_black.png │ ├── ic_wikipedia_white.png │ └── icon.png │ ├── layout-land │ └── fragment_element_details.xml │ ├── layout-normal │ └── ptable_controls.xml │ ├── layout-w600dp │ └── activity_element_list.xml │ ├── layout │ ├── activity_element_list.xml │ ├── activity_periodic_table.xml │ ├── element_block.xml │ ├── element_details_table.xml │ ├── element_list_head.xml │ ├── element_list_item.xml │ ├── element_list_item_content.xml │ ├── fragment_about.xml │ ├── fragment_element_details.xml │ ├── isotope_table_row.xml │ └── ptable_controls.xml │ ├── menu │ ├── common.xml │ ├── element_list.xml │ └── periodic_table.xml │ ├── values-de │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-es │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-fr │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-it │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-ja │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-nb │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-nl │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-pt-rBR │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-ru │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values-tr │ ├── arrays.xml │ ├── elements.xml │ └── strings.xml │ ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── elements.xml │ ├── strings.xml │ ├── styles.xml │ └── video.xml │ └── xml │ └── preferences.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle/ 3 | local.properties 4 | .idea/ 5 | .DS_Store 6 | build/ 7 | captures/ 8 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | Copyright © 2012 Steve Guidetti 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the “Software”), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Elementary (Periodic Table) 2 | 3 | Elementary is a simple Periodic Table and element reference application for Android. 4 | 5 | [Get it on Google Play](https://play.google.com/store/apps/details?id=com.ultramegatech.ey) 8 | [Get it on F-Droid](https://f-droid.org/packages/com.ultramegatech.ey/) 11 | [Get it on Amazon](https://www.amazon.com/gp/product/B00A3HPLWW) 14 | 15 | [Also available for Windows 10](https://github.com/ultramega/elementary-uwp). 16 | 17 | ## Features 18 | 19 | - Zoomable Periodic Table of the Elements 20 | - Tap an element to view some basic details 21 | - Easy access to Wikipedia and a YouTube video on the element 22 | - Free and open-source 23 | 24 | ## Notes 25 | 26 | Videos provided by Periodic Table of Videos (http://www.periodicvideos.com/) 27 | 28 | ## Donate 29 | 30 | If you find this application useful, please consider supporting the project by donating. 31 | 32 | [![Donate via PayPal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=76UJ7AX8VJT5Q) 33 | 34 | ## Credits 35 | 36 | - German translation: [C4R2T3N](https://github.com/C4R2T3N) 37 | - Italian translation: [rapgenic](https://github.com/rapgenic) 38 | - French translation: [Poussinou](https://github.com/Poussinou) 39 | - Brazilian Portuguese translation: [amalvarenga](https://github.com/amalvarenga) 40 | - Japanese translation: [naofum](https://github.com/naofum) 41 | - Russian translation: [ashed](https://github.com/ashed) 42 | - Norwegian translation: [FTno](https://github.com/FTno) 43 | - Dutch translation: [eddriesen](https://github.com/eddriesen) 44 | 45 | ## License 46 | 47 | The source code for Elementary is released under the terms of the [MIT License](http://sguidetti.mit-license.org/). 48 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 30 5 | buildToolsVersion '30.0.3' 6 | defaultConfig { 7 | applicationId "com.ultramegatech.ey" 8 | minSdkVersion 14 9 | targetSdkVersion 30 10 | versionCode 37 11 | versionName '0.12.0' 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled true 16 | shrinkResources true 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.pro' 18 | } 19 | } 20 | compileOptions { 21 | encoding = 'UTF-8' 22 | sourceCompatibility JavaVersion.VERSION_1_8 23 | targetCompatibility JavaVersion.VERSION_1_8 24 | } 25 | } 26 | 27 | dependencies { 28 | implementation 'androidx.fragment:fragment:1.2.5' 29 | implementation 'androidx.preference:preference:1.1.1' 30 | } 31 | -------------------------------------------------------------------------------- /app/proguard-project.pro: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | 22 | -keep class com.ultramegatech.ey.ElementListFragment 23 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 23 | 26 | 27 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 48 | 53 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 66 | 67 | 68 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/AboutFragment.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey; 24 | 25 | import android.annotation.SuppressLint; 26 | import android.app.Dialog; 27 | import android.content.Intent; 28 | import android.net.Uri; 29 | import android.os.Bundle; 30 | import android.view.LayoutInflater; 31 | import android.view.View; 32 | import android.view.ViewGroup; 33 | import android.widget.TextView; 34 | 35 | import androidx.annotation.NonNull; 36 | import androidx.annotation.Nullable; 37 | import androidx.fragment.app.DialogFragment; 38 | import androidx.fragment.app.FragmentManager; 39 | 40 | /** 41 | * Dialog that shows information about the application. 42 | * 43 | * @author Steve Guidetti 44 | */ 45 | public class AboutFragment extends DialogFragment { 46 | @NonNull 47 | private static final String TAG = "AboutDialog"; 48 | 49 | /** 50 | * Show the Dialog. 51 | * 52 | * @param fm The FragmentManager 53 | */ 54 | public static void showDialog(@NonNull FragmentManager fm) { 55 | final DialogFragment fragment = new AboutFragment(); 56 | fragment.show(fm, TAG); 57 | } 58 | 59 | @SuppressLint("InflateParams") 60 | @Nullable 61 | @Override 62 | public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, 63 | @Nullable Bundle savedInstanceState) { 64 | final View root = inflater.inflate(R.layout.fragment_about, null, false); 65 | 66 | ((TextView)root.findViewById(R.id.version)).setText(BuildConfig.VERSION_NAME); 67 | root.findViewById(R.id.website).setOnClickListener(v -> openWebsite()); 68 | root.findViewById(R.id.license).setOnClickListener(v -> openLicense()); 69 | 70 | return root; 71 | } 72 | 73 | @Override 74 | public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { 75 | super.onViewCreated(view, savedInstanceState); 76 | 77 | final Dialog dialog = getDialog(); 78 | if (dialog != null) { 79 | dialog.setTitle(R.string.titleAbout); 80 | } 81 | } 82 | 83 | /** 84 | * Open the Elementary GitHub website in a browser. 85 | */ 86 | private void openWebsite() { 87 | final Intent intent = new Intent(Intent.ACTION_VIEW); 88 | intent.setData(Uri.parse(getString(R.string.aboutWebsiteUrl))); 89 | startActivity(intent); 90 | } 91 | 92 | /** 93 | * Open the software license in a browser. 94 | */ 95 | private void openLicense() { 96 | final Intent intent = new Intent(Intent.ACTION_VIEW); 97 | intent.setData(Uri.parse(getString(R.string.aboutLicenseUrl))); 98 | startActivity(intent); 99 | } 100 | } 101 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/ElementListActivity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey; 24 | 25 | import android.content.Intent; 26 | import android.os.Bundle; 27 | import android.view.Menu; 28 | import android.view.MenuInflater; 29 | import android.view.MenuItem; 30 | 31 | import androidx.appcompat.app.AppCompatActivity; 32 | import androidx.fragment.app.Fragment; 33 | 34 | import com.ultramegatech.ey.util.CommonMenuHandler; 35 | import com.ultramegatech.ey.util.PreferenceUtils; 36 | 37 | /** 38 | * This Activity displays the list of elements. On large screens, this also shows the details for 39 | * the selected element in a second pane. 40 | * 41 | * @author Steve Guidetti 42 | */ 43 | public class ElementListActivity extends AppCompatActivity { 44 | /** 45 | * Whether the Activity has a two-pane layout 46 | */ 47 | private boolean mTwoPane; 48 | 49 | @Override 50 | protected void onCreate(Bundle savedInstanceState) { 51 | final boolean darkTheme = PreferenceUtils.getPrefDarkTheme(); 52 | setTheme(darkTheme ? R.style.DarkTheme : R.style.LightTheme); 53 | 54 | super.onCreate(savedInstanceState); 55 | 56 | setContentView(R.layout.activity_element_list); 57 | } 58 | 59 | @Override 60 | protected void onStart() { 61 | super.onStart(); 62 | 63 | if (findViewById(R.id.elementDetails) != null) { 64 | mTwoPane = true; 65 | final ElementListFragment fragment = (ElementListFragment) getSupportFragmentManager() 66 | .findFragmentById(R.id.elementList); 67 | if (fragment != null) { 68 | fragment.setActivateOnItemClick(true); 69 | } 70 | } 71 | } 72 | 73 | public void onItemSelected(int id) { 74 | if(mTwoPane) { 75 | final Fragment fragment = ElementDetailsFragment.getInstance(id); 76 | getSupportFragmentManager().beginTransaction().replace(R.id.elementDetails, fragment) 77 | .commit(); 78 | } else { 79 | final Intent intent = new Intent(this, ElementDetailsActivity.class); 80 | intent.putExtra(ElementDetailsActivity.EXTRA_ATOMIC_NUMBER, id); 81 | startActivity(intent); 82 | } 83 | } 84 | 85 | @Override 86 | public boolean onCreateOptionsMenu(Menu menu) { 87 | final MenuInflater inflater = getMenuInflater(); 88 | inflater.inflate(R.menu.element_list, menu); 89 | inflater.inflate(R.menu.common, menu); 90 | return super.onCreateOptionsMenu(menu); 91 | } 92 | 93 | @Override 94 | public boolean onOptionsItemSelected(MenuItem item) { 95 | final int id = item.getItemId(); 96 | switch(id) { 97 | case android.R.id.home: 98 | case R.id.menu_table: 99 | finish(); 100 | return true; 101 | } 102 | return CommonMenuHandler.handleSelect(this, id) || super.onOptionsItemSelected(item); 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/ElementaryApplication.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey; 24 | 25 | import android.app.Application; 26 | 27 | import com.ultramegatech.ey.util.ElementUtils; 28 | import com.ultramegatech.ey.util.PreferenceUtils; 29 | 30 | /** 31 | * The Application object representing the app. 32 | * 33 | * @author Steve Guidetti 34 | */ 35 | public class ElementaryApplication extends Application { 36 | @Override 37 | public void onCreate() { 38 | super.onCreate(); 39 | PreferenceUtils.setup(this); 40 | ElementUtils.setup(this); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/SettingsActivity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey; 24 | 25 | import android.annotation.SuppressLint; 26 | import android.content.Intent; 27 | import android.content.SharedPreferences; 28 | import android.os.Bundle; 29 | import android.view.MenuItem; 30 | 31 | import androidx.annotation.NonNull; 32 | import androidx.annotation.Nullable; 33 | import androidx.appcompat.app.AppCompatActivity; 34 | import androidx.preference.PreferenceManager; 35 | 36 | import com.ultramegatech.ey.util.PreferenceUtils; 37 | 38 | public class SettingsActivity extends AppCompatActivity 39 | implements SharedPreferences.OnSharedPreferenceChangeListener { 40 | @Override 41 | protected void onCreate(@Nullable Bundle savedInstanceState) { 42 | final boolean darkTheme = PreferenceUtils.getPrefDarkTheme(); 43 | setTheme(darkTheme ? R.style.DarkTheme_Preferences : R.style.LightTheme_Preferences); 44 | 45 | super.onCreate(savedInstanceState); 46 | 47 | final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); 48 | prefs.registerOnSharedPreferenceChangeListener(this); 49 | 50 | if (savedInstanceState == null) { 51 | getSupportFragmentManager().beginTransaction() 52 | .add(android.R.id.content, new SettingsFragment()).commit(); 53 | } 54 | } 55 | 56 | @Override 57 | public void onDestroy() { 58 | super.onDestroy(); 59 | final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); 60 | prefs.unregisterOnSharedPreferenceChangeListener(this); 61 | } 62 | 63 | @Override 64 | public boolean onOptionsItemSelected(@NonNull MenuItem item) { 65 | if (item.getItemId() == android.R.id.home) { 66 | finish(); 67 | return true; 68 | } 69 | 70 | return super.onOptionsItemSelected(item); 71 | } 72 | 73 | @SuppressLint("ApplySharedPref") 74 | @Override 75 | public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) { 76 | if(PreferenceUtils.KEY_DARK_THEME.equals(key)) { 77 | sharedPreferences.edit().commit(); 78 | 79 | final Intent intent = new Intent(this, SettingsActivity.class); 80 | intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 81 | startActivity(intent); 82 | 83 | Runtime.getRuntime().exit(0); 84 | } 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/SettingsFragment.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey; 24 | 25 | import android.content.Context; 26 | import android.os.Bundle; 27 | 28 | import androidx.annotation.NonNull; 29 | import androidx.preference.ListPreference; 30 | import androidx.preference.PreferenceFragmentCompat; 31 | 32 | import com.ultramegatech.ey.util.PreferenceUtils; 33 | import com.ultramegatech.ey.util.SubtextValuesHelper; 34 | 35 | /** 36 | * Simple implementation of PreferenceActivity for setting general application settings. 37 | * 38 | * @author Steve Guidetti 39 | */ 40 | public class SettingsFragment extends PreferenceFragmentCompat 41 | implements SubtextValuesHelper.OnSubtextValuesChangedListener { 42 | /** 43 | * The Preference for setting the block subtext value 44 | */ 45 | private ListPreference mSubtextValuePreference; 46 | 47 | @Override 48 | public void onCreatePreferences(Bundle savedInstanceState, String rootKey) { 49 | setPreferencesFromResource(R.xml.preferences, rootKey); 50 | mSubtextValuePreference = findPreference(PreferenceUtils.KEY_SUBTEXT_VALUE); 51 | 52 | final Context context = getContext(); 53 | if (context != null) { 54 | final SubtextValuesHelper subtextValuesHelper = new SubtextValuesHelper(getContext(), this); 55 | mSubtextValuePreference.setEntries(subtextValuesHelper.getList()); 56 | } 57 | } 58 | 59 | @Override 60 | public void onSubtextValuesChanged(@NonNull SubtextValuesHelper helper) { 61 | mSubtextValuePreference.setEntries(helper.getList()); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/provider/Isotope.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey.provider; 24 | 25 | import android.os.Build; 26 | import android.text.Html; 27 | import android.text.Spanned; 28 | 29 | import androidx.annotation.NonNull; 30 | import androidx.annotation.Nullable; 31 | 32 | import java.util.Locale; 33 | 34 | /** 35 | * Represents an isotope of an element. 36 | * 37 | * @author Steve Guidetti 38 | */ 39 | public class Isotope { 40 | /** 41 | * The mass number of the isotope 42 | */ 43 | private final int number; 44 | 45 | /** 46 | * The symbol for the isotope 47 | */ 48 | @NonNull 49 | private final String symbol; 50 | 51 | /** 52 | * The relative atomic mass of the isotope 53 | */ 54 | public final double mass; 55 | 56 | /** 57 | * The isotopic composition of the isotope 58 | */ 59 | @Nullable 60 | public final Double ic; 61 | 62 | /** 63 | * @param number The mass number of the isotope 64 | * @param symbol The symbol for the isotope 65 | * @param mass The relative atomic mass of the isotope 66 | * @param ic The isotopic composition of the isotope 67 | */ 68 | Isotope(int number, @NonNull String symbol, double mass, @Nullable Double ic) { 69 | this.number = number; 70 | this.symbol = symbol; 71 | this.mass = mass; 72 | this.ic = ic; 73 | } 74 | 75 | /** 76 | * Get the symbol representing the isotope, which is the mass number in superscript followed by 77 | * the symbol. 78 | * 79 | * @return The symbol representing the isotope 80 | */ 81 | @NonNull 82 | public Spanned getSymbol() { 83 | final String html = 84 | String.format(Locale.US, "%d%s", number, symbol); 85 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { 86 | return Html.fromHtml(html, 0); 87 | } 88 | //noinspection deprecation 89 | return Html.fromHtml(html); 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/util/CommonMenuHandler.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey.util; 24 | 25 | import android.content.Intent; 26 | 27 | import androidx.annotation.NonNull; 28 | import androidx.fragment.app.FragmentActivity; 29 | 30 | import com.ultramegatech.ey.AboutFragment; 31 | import com.ultramegatech.ey.R; 32 | import com.ultramegatech.ey.SettingsActivity; 33 | 34 | /** 35 | * Handles menu items shared by all Activities. 36 | * 37 | * @author Steve Guidetti 38 | */ 39 | public class CommonMenuHandler { 40 | /** 41 | * Select an action based on a menu selection. 42 | * 43 | * @param activity The calling Activity 44 | * @param id Menu item ID 45 | * @return Whether the menu selection was handled 46 | */ 47 | public static boolean handleSelect(@NonNull FragmentActivity activity, int id) { 48 | switch(id) { 49 | case R.id.menu_settings: 50 | activity.startActivity(new Intent(activity, SettingsActivity.class)); 51 | return true; 52 | case R.id.menu_about: 53 | AboutFragment.showDialog(activity.getSupportFragmentManager()); 54 | return true; 55 | } 56 | return false; 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/util/UnitUtils.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey.util; 24 | 25 | import androidx.annotation.NonNull; 26 | 27 | /** 28 | * Utility to convert values between different units. 29 | * 30 | * @author Steve Guidetti 31 | */ 32 | public class UnitUtils { 33 | /** 34 | * Convert temperature value from Kelvin to degrees Celsius. 35 | * 36 | * @param k Value in Kelvin 37 | * @return Value in degrees Celsius 38 | */ 39 | @NonNull 40 | public static Double KtoC(@NonNull Double k) { 41 | return k - 273.15; 42 | } 43 | 44 | /** 45 | * Convert temperature value from Kelvin to degrees Fahrenheit. 46 | * 47 | * @param k Value in Kelvin 48 | * @return Value in degrees Fahrenheit 49 | */ 50 | @NonNull 51 | public static Double KtoF(@NonNull Double k) { 52 | return k * 9.0 / 5 - 459.67; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /app/src/main/java/com/ultramegatech/ey/widget/PeriodicTableBlock.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License (MIT) 3 | * Copyright © 2012 Steve Guidetti 4 | * 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy 6 | * of this software and associated documentation files (the “Software”), to deal 7 | * in the Software without restriction, including without limitation the rights 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | * copies of the Software, and to permit persons to whom the Software is 10 | * furnished to do so, subject to the following conditions: 11 | * 12 | * The above copyright notice and this permission notice shall be included in 13 | * all copies or substantial portions of the Software. 14 | * 15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | * THE SOFTWARE. 22 | */ 23 | package com.ultramegatech.ey.widget; 24 | 25 | import androidx.annotation.NonNull; 26 | 27 | import com.ultramegatech.ey.provider.Element; 28 | 29 | /** 30 | * Stores data for a single block on a PeriodicTableView. 31 | * 32 | * @author Steve Guidetti 33 | */ 34 | public class PeriodicTableBlock { 35 | /** 36 | * The Element 37 | */ 38 | @NonNull 39 | public final Element element; 40 | 41 | /** 42 | * Text to display below the symbol 43 | */ 44 | public String subtext; 45 | 46 | /** 47 | * Block background color 48 | */ 49 | public int color = 0xFFCCCCCC; 50 | 51 | /** 52 | * Grid position 53 | */ 54 | int row; 55 | int col; 56 | 57 | /** 58 | * @param element The Element 59 | */ 60 | public PeriodicTableBlock(@NonNull Element element) { 61 | this.element = element; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /app/src/main/play/contactEmail: -------------------------------------------------------------------------------- 1 | elementary@ultramegasoft.com -------------------------------------------------------------------------------- /app/src/main/play/de/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementar ist ein einfaches Periodensystem und Element-Referenzanwendung. 2 | 3 | Eigenschaften: 4 | - Zoomable Periodensystems der Elemente 5 | - Tippen Sie auf ein Element, einige grundlegende Details zu sehen 6 | - Einfacher Zugriff auf Wikipedia und ein YouTube-Video auf dem Element 7 | - Free mit absolut keine Werbung! 8 | 9 | Videos von Periodic Videos zur Verfügung gestellt (http://www.periodicvideos.com/) 10 | 11 | Unter der MIT-Lizenz 12 | Quelle verfügbar unter: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/de/listing/keywords: -------------------------------------------------------------------------------- 1 | Wissenschaft 2 | Chemie 3 | Elements 4 | Periodensystem -------------------------------------------------------------------------------- /app/src/main/play/de/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Open-Source-Periodensystem der Elemente und Elementverweis App. -------------------------------------------------------------------------------- /app/src/main/play/de/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/de/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Periodensystem -------------------------------------------------------------------------------- /app/src/main/play/de/whatsnew: -------------------------------------------------------------------------------- 1 | - Isotopenzusammensetzungsspalte zum Isotopendiagramm hinzugefügt 2 | - Niederländische Übersetzung hinzugefügt 3 | - Italienische Übersetzung aktualisiert -------------------------------------------------------------------------------- /app/src/main/play/defaultLanguage: -------------------------------------------------------------------------------- 1 | en-US -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementary is a simple Periodic Table and element reference application. 2 | 3 | Features: 4 | - Zoomable Periodic Table of the Elements 5 | - Tap an element to view some basic details 6 | - Easy access to Wikipedia and a YouTube video on the element 7 | - Free with absolutely no ads! 8 | 9 | Videos provided by Periodic Videos (http://www.periodicvideos.com/) 10 | 11 | Licensed under The MIT License 12 | Source available at: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/icon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/icon/logo.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/keywords: -------------------------------------------------------------------------------- 1 | Science 2 | Chemistry 3 | Elements 4 | Periodic Table -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/promoGraphic/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/promoGraphic/promo.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Open-source Periodic Table of the Elements and element reference app. -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/en-US/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Periodic Table -------------------------------------------------------------------------------- /app/src/main/play/en-US/whatsnew: -------------------------------------------------------------------------------- 1 | - Added isotopic composition column to the isotopes chart 2 | - Added Dutch translation 3 | - Updated Italian translation -------------------------------------------------------------------------------- /app/src/main/play/es/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Primaria es una aplicación de referencia Tabla Periódica y un elemento simple. 2 | 3 | caracteristicas: 4 | - Ampliable Tabla Periódica de los Elementos 5 | - Toque en un elemento para ver algunos detalles básicos 6 | - Fácil acceso a Wikipedia y un vídeo de YouTube en el elemento 7 | - Libre sin ningún tipo de anuncios! 8 | 9 | Videos proporcionados por la Periodic Videos (http://www.periodicvideos.com/) 10 | 11 | Licenciado bajo la licencia MIT 12 | Fuente disponible en: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/es/listing/keywords: -------------------------------------------------------------------------------- 1 | Ciencia 2 | Química 3 | Elementos 4 | Tabla periódica -------------------------------------------------------------------------------- /app/src/main/play/es/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/shortdescription: -------------------------------------------------------------------------------- 1 | De código abierto Tabla Periódica de los Elementos y referencia del elemento. -------------------------------------------------------------------------------- /app/src/main/play/es/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/es/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Tabla Periódica -------------------------------------------------------------------------------- /app/src/main/play/es/whatsnew: -------------------------------------------------------------------------------- 1 | - Se agregó una columna de composición isotópica a la tabla de isótopos 2 | - Se agregó traducción al holandés 3 | - Traducción italiana actualizada -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementary est un tableau périodique simple, et un outil référançant les élements ainsi que leurs principales caractéristiques. 2 | 3 | Fonctionnalités : 4 | - Tableau périodique des éléments zoomable 5 | - Cliquez sur un élément pour visualiser les détails basiques de l'élement (ex : température de fusion, densité...) 6 | - Pour chaque élément, un bouton permettant d'accéder à la page Wikipédia française dédiée à l'élément, et un autre bouton permettant de visualiser une vidéo à propos de l'élément 7 | - Gratuit, libre, open-source et sans aucune publicité! 8 | 9 | Les vidéos sont fournies par le site Periodic Videos (http://www.periodicvideos.com/) 10 | 11 | Application distribuée sous les termes de la licence MIT. 12 | Les sources de cette application sont disponibles à l'adresse : https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/keywords: -------------------------------------------------------------------------------- 1 | Science 2 | Chimie 3 | Éléments 4 | Tableau périodique -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Tableau périodique des éléments et référence des éléments. -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/fr/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Tableau Périodique -------------------------------------------------------------------------------- /app/src/main/play/fr/whatsnew: -------------------------------------------------------------------------------- 1 | - Ajout d'une colonne de composition isotopique au tableau des isotopes 2 | - Ajout de la traduction néerlandaise 3 | - Traduction italienne mise à jour -------------------------------------------------------------------------------- /app/src/main/play/it/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementare è una semplice applicazione di riferimento Tabella ed elementi periodica. 2 | 3 | Caratteristiche: 4 | - Zoomable Tavola periodica degli elementi 5 | - Toccare un elemento per visualizzare alcuni dettagli di base 6 | - Facile accesso a Wikipedia e un video di YouTube sull'elemento 7 | - Free con assolutamente nessun annuncio! 8 | 9 | Video forniti da Periodic Videos (http://www.periodicvideos.com/) 10 | 11 | Rilasciato sotto la licenza MIT 12 | Fonte disponibile all'indirizzo: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/it/listing/keywords: -------------------------------------------------------------------------------- 1 | Scienza 2 | Chimica 3 | Elementi 4 | Tavola periodica -------------------------------------------------------------------------------- /app/src/main/play/it/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Open-source Tavola Periodica degli Elementi e app elemento di riferimento. -------------------------------------------------------------------------------- /app/src/main/play/it/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/it/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Tavola periodica -------------------------------------------------------------------------------- /app/src/main/play/it/whatsnew: -------------------------------------------------------------------------------- 1 | - Aggiunta la colonna di composizione isotopica alla tabella degli isotopi 2 | - Aggiunta la traduzione olandese 3 | - Traduzione italiana aggiornata -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementary はシンプルな周期表と元素を参照するアプリケーションです。 2 | 3 | 機能: 4 | - ズームできる元素の周期表 5 | - 元素をタップすると詳細を表示します 6 | - Wikipedia と、元素に関する YouTube 動画に簡単にアクセス 7 | - 無料で完全に広告はありません! 8 | 9 | ビデオは Periodic Videos によって提供されます (http://www.periodicvideos.com/) 10 | 11 | MIT ライセンスに基づいてライセンスされます 12 | ソースは以下で利用できます: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/keywords: -------------------------------------------------------------------------------- 1 | 科学 2 | 化学 3 | 元素 4 | 周期表 -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/shortdescription: -------------------------------------------------------------------------------- 1 | オープンソースの、元素の周期表と元素を参照するアプリ。 -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/ja/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: 周期表 -------------------------------------------------------------------------------- /app/src/main/play/ja/whatsnew: -------------------------------------------------------------------------------- 1 | -同位体チャートに同位体組成列を追加 2 | -オランダ語の翻訳を追加 3 | -イタリア語翻訳の更新 -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementary er en enkel app med det periodiske system og grunnstoffreferanser. 2 | 3 | Funksjoner: 4 | - Det periodiske system er zoombart 5 | - Trykk på et grunnstoff for å vise noen grunnleggende detaljer 6 | - Lett tilgang til Wikipedia og en YouTube-video om grunnstoffet 7 | - Gratis og helt uten reklame! 8 | 9 | Videoer levert av Periodic Videos (http://www.periodicvideos.com/) 10 | 11 | Lisensiert under The MIT License 12 | Kildekoden tilgjengelig på: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/keywords: -------------------------------------------------------------------------------- 1 | Vitenskap 2 | Kjemi 3 | Grunnstoffer 4 | Periodiske system -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/shortdescription: -------------------------------------------------------------------------------- 1 | En åpen kildekode-app med det periodiske system og grunnstoffreferanser. -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/nb/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Det periodiske system -------------------------------------------------------------------------------- /app/src/main/play/nb/whatsnew: -------------------------------------------------------------------------------- 1 | - Lagt isotopkomposisjonskolonne til isotopdiagrammet 2 | - Lagt til nederlandsk oversettelse 3 | - Oppdatert italiensk oversettelse -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementar is een eenvoudig periodiek systeem der elementen. 2 | 3 | Eigenschappen: 4 | - Zoombaar periodiek systeem der elementen 5 | - Tik op een element om alle details te zien 6 | - Eenvoudige link met Wikipedia en een YouTube-Video over het element 7 | - Vrij met absoluut geen reclame! 8 | 9 | Videos van de elementen beschikbaar gesteld door Periodic videos(http://www.periodicvideos.com/) 10 | 11 | Onder MIT licentie beschikbaar 12 | Bron beschikbaar via: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/keywords: -------------------------------------------------------------------------------- 1 | Wetenschap 2 | Chemie 3 | Elementen 4 | Periodiek systeem -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Open-Source periodiek systeem der elementen App. -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/nl/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Periodiek systeem -------------------------------------------------------------------------------- /app/src/main/play/nl/whatsnew: -------------------------------------------------------------------------------- 1 | - Isotopensamenstellingskolom toegevoegd aan de isotopenkaart 2 | - Nederlandse vertaling toegevoegd 3 | - Bijgewerkte Italiaanse vertaling -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementary é um aplicativo de Tabela Periódica que apresenta informações básicas sobre os elementos. 2 | 3 | Funcionalidades: 4 | - Tabela Periódica com ajustes de zoom 5 | - Toque um elemento para ver algumas informações básicas 6 | - Acesso fácil à Wikipédia e vídeo do YouTube sobre o elemento 7 | - Grátis e sem nenhuma propaganda! 8 | 9 | Vídeos fornecidos por Periodic Videos (http://www.periodicvideos.com/) 10 | 11 | Licenciado pela MIT License 12 | Código-fonte disponível em: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/keywords: -------------------------------------------------------------------------------- 1 | Ciência 2 | Química 3 | Elementos 4 | Tabela Periódica -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Um aplicativo de código aberto que apresenta a Tabela Periódica dos Elementos. -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Tabela Periódica -------------------------------------------------------------------------------- /app/src/main/play/pt-BR/whatsnew: -------------------------------------------------------------------------------- 1 | - Adicionada coluna de composição isotópica ao gráfico de isótopos 2 | - Tradução holandesa adicionada 3 | - Tradução italiana atualizada -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/featureGraphic/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/featureGraphic/feature.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Периодическая таблица элементов с открытыми исходными кодами. 2 | 3 | Особенности: 4 | - масштабируемая периодическая таблица элементов 5 | - нажмите на элемент для получения базовой информации 6 | - лёгкий доступ к Wikipedia и YouTube видео в описании элемента 7 | - бесплатно и без рекламы! 8 | 9 | видео предоставляется Periodic Videos (http://www.periodicvideos.com/) 10 | 11 | Лицензия The MIT License 12 | Исходные коды доступны: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/keywords: -------------------------------------------------------------------------------- 1 | Наука 2 | Химия 3 | Элементы 4 | Периодическая таблица 5 | Периодическая система Менделеева 6 | Менделеев -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/sevenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Периодическая таблица элементов с открытыми исходными кодами. -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/tenInchScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/5.png -------------------------------------------------------------------------------- /app/src/main/play/ru/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: периодическая таблица -------------------------------------------------------------------------------- /app/src/main/play/ru/whatsnew: -------------------------------------------------------------------------------- 1 | - Добавлен столбец изотопной композиции в таблицу изотопов. 2 | - Добавлен голландский перевод 3 | - Обновлен итальянский перевод -------------------------------------------------------------------------------- /app/src/main/play/tr/listing/fulldescription: -------------------------------------------------------------------------------- 1 | Elementary basit bir Periyodik Tablo ve element referansı uygulamasıdır. 2 | 3 | Özellikler: 4 | - Elementlerin yakınlaştırılabilir Periyodik Tablosu 5 | - Bazı basit detayları görüntülemek için bir elemente dokunun 6 | - Element üstünde Vikipedi'ye ve bir YouTube videosuna kolay erişim 7 | - Kesinlikle reklamsız ve ücretsiz! 8 | 9 | Videolar Periodic Videos tarafından sağlanmaktadır (http://www.periodicvideos.com/) 10 | 11 | MIT Lisansı altında lisanslanmıştır 12 | Kaynak şurada mevcuttur: https://github.com/ultramega/elementary -------------------------------------------------------------------------------- /app/src/main/play/tr/listing/keywords: -------------------------------------------------------------------------------- 1 | Bilim 2 | Kimya 3 | Elementler 4 | Periyodik Tablo -------------------------------------------------------------------------------- /app/src/main/play/tr/listing/shortdescription: -------------------------------------------------------------------------------- 1 | Açık kaynak, Elementlerin Periyodik Tablosu ve element referansı uygulaması. -------------------------------------------------------------------------------- /app/src/main/play/tr/listing/title: -------------------------------------------------------------------------------- 1 | Elementary: Periyodik Tablo -------------------------------------------------------------------------------- /app/src/main/play/tr/whatsnew: -------------------------------------------------------------------------------- 1 | - İzotoplar grafiğine izotopik bileşim sütunu eklendi 2 | - Hollandaca çeviri eklendi 3 | - İtalyanca çeviri güncellendi -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_video_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_video_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_video_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_video_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_wikipedia_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_wikipedia_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_wikipedia_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_wikipedia_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_video_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_video_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_video_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_video_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_wikipedia_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_wikipedia_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_wikipedia_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_wikipedia_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_video_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_video_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_video_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_video_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_wikipedia_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_wikipedia_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_wikipedia_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_wikipedia_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_video_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_video_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_video_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_video_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_wikipedia_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_wikipedia_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_wikipedia_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_wikipedia_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_video_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_video_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_video_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_video_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_wikipedia_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_wikipedia_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_wikipedia_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_wikipedia_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/layout-land/fragment_element_details.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 31 | 32 | 37 | 38 | 39 | 40 | 51 | 52 | 60 | 61 | 69 | 70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /app/src/main/res/layout-normal/ptable_controls.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 34 | 35 | 42 | 43 | 46 | 47 | 52 | 53 | 59 | 60 | 63 | 64 | 69 | 70 | 77 | 78 | -------------------------------------------------------------------------------- /app/src/main/res/layout-w600dp/activity_element_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 34 | 35 | 40 | 41 | 42 | 43 | 48 | 49 | 50 | 56 | 57 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_element_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 29 | 30 | 31 | 32 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_periodic_table.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 30 | 31 | 38 | 39 | 46 | 47 | 54 | 55 | 63 | 64 | -------------------------------------------------------------------------------- /app/src/main/res/layout/element_block.xml: -------------------------------------------------------------------------------- 1 | 2 | 24 | 33 | 34 | 42 | 43 | 53 | 54 | 63 | 64 | 76 | 77 | -------------------------------------------------------------------------------- /app/src/main/res/layout/element_list_head.xml: -------------------------------------------------------------------------------- 1 | 23 | 29 | 30 | 41 | 42 |