source: issm/oecreview/Archive/13393-13976/ISSM-13959-13960.diff@ 13980

Last change on this file since 13980 was 13980, checked in by Mathieu Morlighem, 12 years ago

preparing oecreview for 13393-13976'

File size: 10.8 KB
  • ../trunk-jpl/src/android/ISSM_App/.classpath

     
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 <classpath>
    3         <classpathentry kind="src" path="src"/>
    4         <classpathentry kind="src" path="gen"/>
    5         <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
    6         <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
    7         <classpathentry kind="output" path="bin/classes"/>
    8 </classpath>
  • ../trunk-jpl/src/android/ISSM_App/project.properties

     
    1 # This file is automatically generated by Android Tools.
    2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
    3 #
    4 # This file must be checked in Version Control Systems.
    5 #
    6 # To customize properties used by the Ant build system edit
    7 # "ant.properties", and override values to adapt the script to your
    8 # project structure.
    9 #
    10 # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
    11 #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
    12 
    13 # Project target.
    14 target=android-14
  • ../trunk-jpl/src/android/ISSM_App/.project

     
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 <projectDescription>
    3         <name>ISSM_App</name>
    4         <comment></comment>
    5         <projects>
    6         </projects>
    7         <buildSpec>
    8                 <buildCommand>
    9                         <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
    10                         <arguments>
    11                         </arguments>
    12                 </buildCommand>
    13                 <buildCommand>
    14                         <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
    15                         <arguments>
    16                         </arguments>
    17                 </buildCommand>
    18                 <buildCommand>
    19                         <name>org.eclipse.jdt.core.javabuilder</name>
    20                         <arguments>
    21                         </arguments>
    22                 </buildCommand>
    23                 <buildCommand>
    24                         <name>com.android.ide.eclipse.adt.ApkBuilder</name>
    25                         <arguments>
    26                         </arguments>
    27                 </buildCommand>
    28         </buildSpec>
    29         <natures>
    30                 <nature>com.android.ide.eclipse.adt.AndroidNature</nature>
    31                 <nature>org.eclipse.jdt.core.javanature</nature>
    32         </natures>
    33 </projectDescription>
  • ../trunk-jpl/src/android/ISSM_App/proguard-project.txt

     
    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 #}
  • ../trunk-jpl/src/android/ISSM_App/AndroidManifest.xml

     
    1 <?xml version="1.0" encoding="utf-8"?>
    2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    3     package="issm.app"
    4     android:versionCode="1"
    5     android:versionName="1.0" >
    6 
    7     <uses-sdk android:minSdkVersion="14" />
    8 
    9     <application
    10         android:icon="@drawable/ic_launcher"
    11         android:label="@string/app_name" >
    12         <activity
    13             android:name=".ISSM_AppActivity"
    14             android:label="@string/app_name" >
    15             <intent-filter>
    16                 <action android:name="android.intent.action.MAIN" />
    17 
    18                 <category android:name="android.intent.category.LAUNCHER" />
    19             </intent-filter>
    20         </activity>
    21     </application>
    22 
    23 </manifest>
    24  No newline at end of file
  • ../trunk-jpl/src/android/ISSM_App/src/issm/app/ISSM_AppActivity.java

     
    1 package issm.app;
    2 
    3 import android.app.Activity;
    4 import android.os.Bundle;
    5 import android.view.View;
    6 import android.view.View.OnClickListener;
    7 import android.widget.TextView;
    8 import android.widget.SeekBar;
    9 
    10 public class ISSM_AppActivity extends Activity implements OnClickListener
    11 {
    12         private SeekBar sb;
    13         private TextView tv;
    14        
    15     public void onCreate(Bundle savedInstanceState)
    16     {
    17         super.onCreate(savedInstanceState);
    18         setContentView(R.layout.main);
    19         sb = (SeekBar)findViewById(R.id.seekBar2);
    20         tv = (TextView)findViewById(R.id.editText2);
    21         tv.setText("Current Progress: " + sb.getProgress());
    22         sb.setOnClickListener(this);
    23     }
    24 
    25         public void onClick(View v)
    26         {
    27                 tv.setText("Current Progress: " + sb.getProgress());
    28         }
    29 }
    30  No newline at end of file
  • ../trunk-jpl/src/android/ISSM_App/gen/issm/app/R.java

    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
     
    1 /* AUTO-GENERATED FILE.  DO NOT MODIFY.
    2  *
    3  * This class was automatically generated by the
    4  * aapt tool from the resource data it found.  It
    5  * should not be modified by hand.
    6  */
    7 
    8 package issm.app;
    9 
    10 public final class R {
    11     public static final class attr {
    12     }
    13     public static final class drawable {
    14         public static final int ic_launcher=0x7f020000;
    15     }
    16     public static final class id {
    17         public static final int editText2=0x7f050000;
    18         public static final int seekBar2=0x7f050001;
    19     }
    20     public static final class layout {
    21         public static final int main=0x7f030000;
    22     }
    23     public static final class string {
    24         public static final int app_name=0x7f040001;
    25         public static final int hello=0x7f040000;
    26     }
    27 }
  • ../trunk-jpl/src/android/ISSM_App/gen/issm/app/BuildConfig.java

     
    1 /** Automatically generated file. DO NOT MODIFY */
    2 package issm.app;
    3 
    4 public final class BuildConfig {
    5     public final static boolean DEBUG = true;
    6 }
    7  No newline at end of file
  • ../trunk-jpl/src/android/ISSM_App/res/values/strings.xml

     
    1 <?xml version="1.0" encoding="utf-8"?>
    2 <resources>
    3 
    4     <string name="hello">Hello World, ISSM_AppActivity!</string>
    5     <string name="app_name">ISSM_App</string>
    6 
    7 </resources>
    8  No newline at end of file
  • ../trunk-jpl/src/android/ISSM_App/res/layout/main.xml

    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
     
    1 <?xml version="1.0" encoding="utf-8"?>
    2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    3     android:layout_width="match_parent"
    4     android:layout_height="match_parent"
    5     android:orientation="horizontal" >
    6 
    7     <TextView
    8         android:id="@+id/editText2"
    9         android:layout_width="match_parent"
    10         android:layout_height="wrap_content"
    11         android:layout_weight="1"
    12         android:ems="10" android:translationX="0.5in" android:translationY="1in"/>
    13    
    14     <SeekBar
    15         android:id="@+id/seekBar2"
    16         android:layout_width="match_parent"
    17         android:layout_height="wrap_content"
    18         android:layout_weight="1"
    19         android:clickable="true"
    20         android:max="100" android:translationY="2in" android:translationX="-0.5in"/>
    21 
    22 </LinearLayout>
    23  No newline at end of file
Note: See TracBrowser for help on using the repository browser.