-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
三八妇女节,祝女同胞万事顺利,幸福美满!(虽然可能没有女孩子在用易控) - 修复经常白屏的问题 - 细调UI,较少误触,提高拖动概率,修改部分元素间距与大小 - 修复解码器优选模块问题,适配未知解码器 - 修复无法自动切换隧道连接的问题 - 修复部分设备无法恢复背光的问题 - 支持发送文件 - 支持设置默认使用易控打开有线设备,避免每次插入后手动授权 - 修复因无法直连导致延迟增加的问题 - 支持ADB复用,降低启动时间,减少资源占用 - 支持单应用投屏 - 优化代码结构 - 旋转被控端屏幕存在问题
- Loading branch information
1 parent
7666fb6
commit 991295d
Showing
69 changed files
with
1,454 additions
and
868 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
easycontrol/app/src/main/java/top/saymzx/easycontrol/app/UsbActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package top.saymzx.easycontrol.app; | ||
|
||
import android.app.Activity; | ||
import android.content.Intent; | ||
import android.os.Bundle; | ||
|
||
import top.saymzx.easycontrol.app.helper.MyBroadcastReceiver; | ||
|
||
public class UsbActivity extends Activity { | ||
|
||
@Override | ||
public void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
Intent intent = new Intent(); | ||
intent.setAction(MyBroadcastReceiver.ACTION_UPDATE_USB); | ||
sendBroadcast(intent); | ||
startActivity(new Intent(this, MainActivity.class)); | ||
finish(); | ||
} | ||
} |
Oops, something went wrong.