This commit is contained in:
jhengazuki 2025-09-25 12:48:58 +08:00
parent 6c4f7ca4a7
commit 4b6f4b7371
4 changed files with 59 additions and 59 deletions

View File

@ -49,10 +49,8 @@ dependencies {
implementation 'com.squareup.okhttp3:okhttp:' + okhttpVersion implementation 'com.squareup.okhttp3:okhttp:' + okhttpVersion
implementation 'com.github.thegrizzlylabs:sardine-android:0.9' implementation 'com.github.thegrizzlylabs:sardine-android:0.9'
implementation 'wang.harlon.quickjs:wrapper-android:3.2.3' implementation 'wang.harlon.quickjs:wrapper-android:3.2.3'
implementation 'com.google.android.flexbox:flexbox:3.0.0'
implementation 'com.google.code.gson:gson:2.13.2' implementation 'com.google.code.gson:gson:2.13.2'
implementation 'com.hierynomus:smbj:0.14.0' implementation 'com.hierynomus:smbj:0.14.0'
implementation 'com.orhanobut:logger:2.2.0' implementation 'com.orhanobut:logger:2.2.0'
implementation 'androidx.core:core:1.17.0'
implementation 'org.jsoup:jsoup:1.21.2' implementation 'org.jsoup:jsoup:1.21.2'
} }

View File

@ -1,82 +1,84 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical"> android:orientation="vertical">
<com.google.android.flexbox.FlexboxLayout <HorizontalScrollView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="16dp" android:fillViewport="true"
app:flexDirection="row" android:padding="16dp">
app:flexWrap="wrap"
app:justifyContent="flex_start">
<Button <LinearLayout
android:id="@+id/home"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="home" android:orientation="horizontal">
android:textAllCaps="false" />
<Button <Button
android:id="@+id/homeVideo" android:id="@+id/home"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="homeVideo" android:text="home"
android:textAllCaps="false" /> android:textAllCaps="false" />
<Button <Button
android:id="@+id/category" android:id="@+id/homeVideo"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="category" android:text="homeVideo"
android:textAllCaps="false" /> android:textAllCaps="false" />
<Button <Button
android:id="@+id/detail" android:id="@+id/category"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="detail" android:text="category"
android:textAllCaps="false" /> android:textAllCaps="false" />
<Button <Button
android:id="@+id/player" android:id="@+id/detail"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="player" android:text="detail"
android:textAllCaps="false" /> android:textAllCaps="false" />
<Button <Button
android:id="@+id/search" android:id="@+id/player"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="search" android:text="player"
android:textAllCaps="false" /> android:textAllCaps="false" />
<Button <Button
android:id="@+id/live" android:id="@+id/search"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="live" android:text="search"
android:textAllCaps="false" /> android:textAllCaps="false" />
<Button <Button
android:id="@+id/proxy" android:id="@+id/live"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="proxy" android:text="live"
android:textAllCaps="false" /> android:textAllCaps="false" />
</com.google.android.flexbox.FlexboxLayout> <Button
android:id="@+id/proxy"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="proxy"
android:textAllCaps="false" />
</LinearLayout>
</HorizontalScrollView>
<View <View
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0.5dp" android:layout_height="0.5dp"
android:background="#000000" /> android:background="#000000" />
<androidx.core.widget.NestedScrollView <ScrollView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:fillViewport="true"> android:fillViewport="true">
@ -84,10 +86,10 @@
<TextView <TextView
android:id="@+id/result" android:id="@+id/result"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="wrap_content"
android:padding="16dp" android:padding="16dp"
android:textColor="#000000" android:textColor="#000000"
android:textSize="14sp" /> android:textSize="14sp" />
</androidx.core.widget.NestedScrollView> </ScrollView>
</LinearLayout> </LinearLayout>

Binary file not shown.

View File

@ -1 +1 @@
b9bdfaa2a27f0f64a0053f7f3d193c29 bd8c878db83953d74efc2cb0723f68ac