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,17 +1,19 @@
<?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"> <LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button <Button
android:id="@+id/home" android:id="@+id/home"
@ -68,15 +70,15 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="proxy" android:text="proxy"
android:textAllCaps="false" /> android:textAllCaps="false" />
</LinearLayout>
</com.google.android.flexbox.FlexboxLayout> </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