Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
ishenli committed Aug 22, 2024
1 parent b5d8994 commit 6d65f1d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
| AI 对话 | 通用智能体、专业智能体 | MVP完成 |
| 看一看 | 短视频、长视频 | MVP完成 |
| 听一听 | 听歌、播客 | 待完成 |
| 探索 | 类似朋友圈的信息流 | 待完成 |

### 相关技术
+ MVVM
Expand All @@ -28,7 +29,7 @@ https://www.figma.com/design/cvpC33GRSIFRU1dD6QrCp4/%E5%BE%AE%E4%BF%A18.0%EF%BC%
### 准备工作

#### 关联应用
+ [chatbot 的 Java 应用](https://github.com/workdance/chatbot-core)]
+ [chatbot 的 Java 应用](https://github.com/workdance/chatbot-core)
+ [chatbot 的 Python 应用](https://github.com/workdance/chatbot-ai)
+ [chatbot 的 React PC 应用](https://github.com/workdance/chatbot-web)

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/fragment_dashboard.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
android:background="@drawable/bg_border_bottom"
android:layout_width="match_parent"
android:paddingStart="20dp"
android:paddingTop="40dp"
android:paddingEnd="20dp"
android:paddingTop="20dp"
android:layout_height="80dp"
android:layout_height="90dp"
tools:ignore="MissingConstraints">
<TextView
android:layout_width="0dp"
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/layout/fragment_home.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<data>

</data>

<LinearLayout
android:id="@+id/root"
android:orientation="vertical"
Expand All @@ -16,9 +16,9 @@
android:background="@drawable/bg_border_bottom"
android:layout_width="match_parent"
android:paddingStart="20dp"
android:paddingTop="40dp"
android:paddingEnd="20dp"
android:paddingTop="20dp"
android:layout_height="80dp"
android:layout_height="90dp"
tools:ignore="MissingConstraints">
<TextView
android:layout_width="0dp"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_my.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<!--头像面板-->
<LinearLayout
android:paddingTop="20dp"
android:paddingTop="40dp"
android:paddingBottom="20dp"
android:layout_marginBottom="16dp"
android:background="@color/white"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ public boolean onStartNestedScroll(View child, View target,
@Override
public void onNestedScrollAccepted(View child, View target, int axes) {
this.mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes);
this.startNestedScroll(axes & 2);
this.startNestedScroll(axes & ViewCompat.SCROLL_AXIS_VERTICAL);
this.mTotalUnconsumed = getOverPlusDistance();
this.mNestedScrollInProgress = true;
}
Expand Down

0 comments on commit 6d65f1d

Please sign in to comment.