Skip to content

Commit 4ba44f6

Browse files
committed
添加CameraX库支持(不是很稳定)
稍微整理如屎山的代码 添加Gitee仓库入口 修改FAQ Add cameraX library support (not very stable)(like snapchat, you can only record, but you can't take picture) Sort out the code add Gitee repo entrance edit FAQ
1 parent 88dea8f commit 4ba44f6

File tree

6 files changed

+26
-1
lines changed

6 files changed

+26
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ A2. 目前有些应用并不能成功替换(特别是系统相机)。或者
4242
Q3. 画面花屏?
4343
A3. 视频分辨率不对。
4444

45+
Q4. 画面扭曲,变形?
46+
A4. 请使用剪辑软件修改原视频来匹配屏幕。
47+
48+
4549
## 反馈问题
4650

4751
请直接在issues中反馈,如果为BUG反馈,请附带Xposed**模块**日志信息。

README_en.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ A2. Till now ,there are a few apps that can't be hooked, especially the system c
3939
Q3. Blurred screen?
4040
A3. The resolution of video is wrong.
4141

42+
Q4. Distorted picture?
43+
A4. Please use the video editing software to modify the original video to match the screen.
44+
4245
## Question report:
4346

4447
raise it in issues directly. If it is a bug, please attach with Xposed **modules** log.

README_tc.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ A2. 現時有些應用並不能成功替換(特別是系統相機)。 或者
3939
Q3. 畫面花屏?
4040
A3. 影片解析度不對。
4141

42+
Q4. 畫面扭曲,變形?
43+
A4. 請使用剪輯軟件修改原視頻來匹配荧幕。
44+
4245
## 迴響問題
4346

4447
請直接在issues中迴響,如果為BUG迴響,請附帶Xposed**模組**日誌資訊。

app/release/app-release.apk

251 Bytes
Binary file not shown.

app/src/main/java/com/example/vcam/MainActivity.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,15 @@ public void onClick(View v) {
3030
}
3131
});
3232

33-
33+
Button repo_button_chinamainland = findViewById(R.id.button2);
34+
repo_button_chinamainland.setOnClickListener(new View.OnClickListener() {
35+
@Override
36+
public void onClick(View view) {
37+
Uri uri = Uri.parse("https://gitee.com/w2016561536/android_virtual_cam");
38+
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
39+
startActivity(intent);
40+
}
41+
});
3442
}
3543
}
3644

app/src/main/res/layout/activity_main.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,12 @@
2828
android:layout_width="match_parent"
2929
android:layout_height="wrap_content"
3030
android:text="@string/click_to_go_to_repo" />
31+
32+
<Button
33+
android:id="@+id/button2"
34+
android:layout_width="match_parent"
35+
android:layout_height="wrap_content"
36+
android:layout_marginTop="20px"
37+
android:text="Gitee平台(中国大陆更快)" />
3138
</LinearLayout>
3239
</ScrollView>

0 commit comments

Comments
 (0)