拷贝APP_Bck20250119项目源码,移除libjc/jcc/libs/android-29.jar文件。
This commit is contained in:
22
wvmapp/src/main/AndroidManifest.xml
Normal file
22
wvmapp/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="cc.winboll.studio.wvmapp" >
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/AppTheme"
|
||||
android:resizeableActivity = "true">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:label="@string/app_name" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
14
wvmapp/src/main/java/cc/winboll/studio/wvmapp/App.java
Normal file
14
wvmapp/src/main/java/cc/winboll/studio/wvmapp/App.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package cc.winboll.studio.wvmapp;
|
||||
|
||||
/**
|
||||
* @Author ZhanGSKen@QQ.COM
|
||||
* @Date 2024/12/20 08:34:57
|
||||
* @Describe 全局应用
|
||||
*/
|
||||
public class App extends WinBollApplication {
|
||||
|
||||
public static final String TAG = "App";
|
||||
|
||||
|
||||
|
||||
}
|
@@ -0,0 +1,14 @@
|
||||
package cc.winboll.studio.wvmapp;
|
||||
|
||||
import android.app.*;
|
||||
import android.os.*;
|
||||
|
||||
public class MainActivity extends Activity
|
||||
{
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState)
|
||||
{
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.main);
|
||||
}
|
||||
}
|
BIN
wvmapp/src/main/res/drawable-hdpi/ic_launcher.png
Normal file
BIN
wvmapp/src/main/res/drawable-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
BIN
wvmapp/src/main/res/drawable-mdpi/ic_launcher.png
Normal file
BIN
wvmapp/src/main/res/drawable-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
BIN
wvmapp/src/main/res/drawable-xhdpi/ic_launcher.png
Normal file
BIN
wvmapp/src/main/res/drawable-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
wvmapp/src/main/res/drawable-xxhdpi/ic_launcher.png
Normal file
BIN
wvmapp/src/main/res/drawable-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
11
wvmapp/src/main/res/layout/main.xml
Normal file
11
wvmapp/src/main/res/layout/main.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center">
|
||||
|
||||
<TextView
|
||||
android:text="@string/hello_world"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
5
wvmapp/src/main/res/values-v21/styles.xml
Normal file
5
wvmapp/src/main/res/values-v21/styles.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="AppTheme" parent="@android:style/Theme.Material.Light">
|
||||
</style>
|
||||
</resources>
|
7
wvmapp/src/main/res/values/strings.xml
Normal file
7
wvmapp/src/main/res/values/strings.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">WVMAPP</string>
|
||||
<string name="hello_world">Hello world!</string>
|
||||
|
||||
</resources>
|
5
wvmapp/src/main/res/values/styles.xml
Normal file
5
wvmapp/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="AppTheme" parent="@android:style/Theme.Holo.Light">
|
||||
</style>
|
||||
</resources>
|
Reference in New Issue
Block a user