Skip to content

Commit

Permalink
添加CameraX库支持(不是很稳定)
Browse files Browse the repository at this point in the history
稍微整理如屎山的代码
添加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
  • Loading branch information
w2016561536 committed Feb 3, 2022
1 parent 88dea8f commit 4ba44f6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ A2. 目前有些应用并不能成功替换(特别是系统相机)。或者
Q3. 画面花屏?
A3. 视频分辨率不对。

Q4. 画面扭曲,变形?
A4. 请使用剪辑软件修改原视频来匹配屏幕。


## 反馈问题

请直接在issues中反馈,如果为BUG反馈,请附带Xposed**模块**日志信息。
Expand Down
3 changes: 3 additions & 0 deletions README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ A2. Till now ,there are a few apps that can't be hooked, especially the system c
Q3. Blurred screen?
A3. The resolution of video is wrong.

Q4. Distorted picture?
A4. Please use the video editing software to modify the original video to match the screen.

## Question report:

raise it in issues directly. If it is a bug, please attach with Xposed **modules** log.
Expand Down
3 changes: 3 additions & 0 deletions README_tc.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ A2. 現時有些應用並不能成功替換(特別是系統相機)。 或者
Q3. 畫面花屏?
A3. 影片解析度不對。

Q4. 畫面扭曲,變形?
A4. 請使用剪輯軟件修改原視頻來匹配荧幕。

## 迴響問題

請直接在issues中迴響,如果為BUG迴響,請附帶Xposed**模組**日誌資訊。
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
10 changes: 9 additions & 1 deletion app/src/main/java/com/example/vcam/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ public void onClick(View v) {
}
});


Button repo_button_chinamainland = findViewById(R.id.button2);
repo_button_chinamainland.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Uri uri = Uri.parse("https://gitee.com/w2016561536/android_virtual_cam");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
}
});
}
}

Expand Down
7 changes: 7 additions & 0 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,12 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/click_to_go_to_repo" />

<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20px"
android:text="Gitee平台(中国大陆更快)" />
</LinearLayout>
</ScrollView>

0 comments on commit 4ba44f6

Please sign in to comment.