opening TIC-80 sources
BIN
build/android/res/drawable-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
build/android/res/drawable-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
build/android/res/drawable-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
build/android/res/drawable-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
build/android/res/drawable/file.png
Normal file
|
After Width: | Height: | Size: 963 B |
BIN
build/android/res/drawable/folder.png
Normal file
|
After Width: | Height: | Size: 846 B |
BIN
build/android/res/drawable/up_folder.png
Normal file
|
After Width: | Height: | Size: 975 B |
60
build/android/res/layout/dialog.xml
Normal file
@@ -0,0 +1,60 @@
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/saveFileDialog"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical" >
|
||||
<ListView
|
||||
android:id="@+id/fileList"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:padding="10dp" />
|
||||
<LinearLayout
|
||||
android:id="@+id/fileLinearLayout2"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:padding="10dp" >
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fileTextView1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="10dp"
|
||||
android:text="@string/enterFileName"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||||
<EditText
|
||||
android:id="@+id/fileName"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@string/enterFileName"
|
||||
android:inputType="text"
|
||||
android:padding="10dp" />
|
||||
<LinearLayout
|
||||
android:id="@+id/fileLinearLayout3"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal" >
|
||||
<Button
|
||||
android:id="@+id/fileSaveLoad"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:padding="10dp"
|
||||
android:text="@string/saveButtonText" />
|
||||
<Button
|
||||
android:id="@+id/fileCancel"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:padding="10dp"
|
||||
android:text="@string/cancelButtonText" />
|
||||
<Button
|
||||
android:id="@+id/newFolder"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/newFolderButtonText" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
7
build/android/res/layout/item.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<com.samsung.sprc.fileselector.TextViewWithImage xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:padding="10dp"
|
||||
android:textSize="16sp" >
|
||||
|
||||
</com.samsung.sprc.fileselector.TextViewWithImage>
|
||||
19
build/android/res/values/strings.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">TIC-80</string>
|
||||
<string name="enterFileName">Enter file name:</string>
|
||||
<string name="saveButtonText">Save</string>
|
||||
<string name="cancelButtonText">Cancel</string>
|
||||
<string name="cannotSaveFileMessage">Cannot save file</string>
|
||||
<string name="fileNameFirstMessage">Please enter the file name first</string>
|
||||
<string name="okButtonText">OK</string>
|
||||
<string name="loadButtonText">Load</string>
|
||||
<string name="accessDenied">Access denied</string>
|
||||
<string name="missingFile">No such file</string>
|
||||
<string name="newFolderButtonText">New folder</string>
|
||||
<string name="newFolderDialogMessage">Create new folder</string>
|
||||
<string name="createButtonText">Create</string>
|
||||
<string name="folderCreationOk">Folder created sucessfully</string>
|
||||
<string name="folderCreationError">Error while creating folder</string>
|
||||
<string name="information">Information</string>
|
||||
</resources>
|
||||