Skip to content

Commit a2cecd9

Browse files
v1.6.9
Updated content: new functions: 1. Treeview, listview supported by the Android. 2. Add the interface for importing from general format Tkinter file (right click the form_1 node on the right and select import from Tkinter small file in the pop-up menu.) 3. Add the device resolution option when running Android programs. Bug modification: 1. Optimize the Android packaging experience and correct related errors. 2. Right click the file list to create forms, files and other functions. 3. Fix the bug that failed to package exe after selecting the icon.
1 parent 6c3cbd2 commit a2cecd9

5 files changed

Lines changed: 28 additions & 4 deletions

File tree

TKinterDesigner-v1.6.9-win32.exe

50.7 MB
Binary file not shown.

TKinterDesigner-v1.6.9-win64.exe

47.3 MB
Binary file not shown.

setting.rec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
PythonPath=D:\Python310
2+
DownLoadPath=E:\github\TKinterDesigner-master\DownLoad
3+
GridSize=50
4+
Language=Cn
5+
StyleScheme=Dark
6+
AutoSaveConfig=1
7+
MaxOperateRecordCount=50
8+
AutoZipConfig=1
9+
MaxZipCount=10
10+
ChartVisible=1
11+
MouseDragType=
12+
MouseScaleType=
13+
CodeFontSize=14
14+
CodeFontName=Courier New
15+
ScaleCodeFontSizeType=Ctrl
16+
BorderTransparentColor=#00FFFF
17+
AndroidTTFFile=
18+
AndroidTTFScope=1
19+
JAVA_HOME=
20+
ANDROID_SDK_ROOT=
21+
NDK_ROOT=
22+
GradleZipFile=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
23+
EnvironmentType=0
24+
ProjectDir=E:\github\TKinterDesigner-master

templates/AppLandscape/PyApp/app/src/main/java/com/jventura/PyApp/SplashActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
public class SplashActivity extends AppCompatActivity implements View.OnClickListener{
19-
private int recLen = 5;//跳过倒计时提示5秒
19+
private int recLen = 2;//跳过倒计时提示5秒
2020
private TextView tv;
2121
Timer timer = new Timer();
2222
private Handler handler;
@@ -43,7 +43,7 @@ public void run() {
4343
startActivity(intent);
4444
finish();
4545
}
46-
}, 5000);//延迟5S后发送handler信息
46+
}, 2000);//延迟2S后发送handler信息
4747
}
4848

4949

templates/AppPortrait/PyApp/app/src/main/java/com/jventura/pyapp/SplashActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
public class SplashActivity extends AppCompatActivity implements View.OnClickListener{
20-
private int recLen = 5;//跳过倒计时提示5秒
20+
private int recLen = 2;//跳过倒计时提示2秒
2121
private TextView tv;
2222
Timer timer = new Timer();
2323
private Handler handler;
@@ -44,7 +44,7 @@ public void run() {
4444
startActivity(intent);
4545
finish();
4646
}
47-
}, 5000);//延迟5S后发送handler信息
47+
}, 2000);//延迟2S后发送handler信息
4848
}
4949

5050

0 commit comments

Comments
 (0)