At the end of semster, each student must design and/or implement a set of Android/iPhone code generator and a macro script dedicated for HTML scripting, including the following

 
   
Android/iPhone Code Generators
1. Define demanded code pieces such as xLayout/Button/Textview/Keyevent
2. Implement your own design
 
   
HTML Macro
1. Design a macro tool similar to SimpleSlide
2. Implement your own design
3. Use your own tool to develop your own Homepage
Link to SimpleSlide
 
 
Code Definition Example 0p
Android Key Code
manifest 0p
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
   package="org.anddev.android.PACKAGE">
   <application android:icon="@drawable/ICON">
      <activity android:name="NAME"
                android:label="@string/LABEL">
         <intent-filter>
         <action
android:name="android.intent.action.MAIN" />
         <category
android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
      </activity>
   </application>
</manifest>
LinearLayout   0
<LinearLayout 
   android:orientation="vertical" 
   android:layout_width="fill_parent" 
   android:layout_height="fill_parent" > 
RelativeLayout   0

To Be filled

AbsoluteLayout  
FrameLayout  
TableLayout 0p
<TableLayout    
   android:layout_width="fill_parent"    
   android:layout_height="wrap_content"  
   android:stretchColumns="DummyCOL" >  
TableRow 0p
<TableRow      
   android:layout_width="fill_parent"    
   android:layout_height="wrap_content" >    
Button 0p
<Button     
   android:id="@+id/DummyID"     
   android:layout_width="fill_parent"      
   android:layout_height="wrap_content"    
   android:text="DummyTEXT" />
RadioButton 0
<RadioButton
android:id="@+id/DummyID"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/DummyTEXT"
        android:onClick="onRadioButtonClicked"/>

Web Page Copyright: 國立政治大學資訊科學系 連耀南 lien@cherry.cs.nccu.edu.tw  term.htm,  Tue Apr 7 10:15:43 CST 2015