mirror of https://github.com/deniscerri/ytdlnis
v1.0.1 - Fixes & New Features
- Fixed single video link on share intent from the new internal api request - Added pull to refresh on history fragment so u dont have to close the app to see recent history elements - Each fragment has now its own titlebarpull/1/head
parent
9230185930
commit
af2c7eefab
@ -1,19 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/swiperefresh"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:backgroundTintMode="src_over"
|
||||
tools:context=".HomeFragment"
|
||||
android:id="@+id/scrollView1"
|
||||
>
|
||||
android:layout_height="match_parent" >
|
||||
|
||||
<LinearLayout
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/linearLayout1"
|
||||
android:layout_margin="10dp"
|
||||
android:orientation="vertical" />
|
||||
android:layout_height="match_parent"
|
||||
android:backgroundTintMode="src_over"
|
||||
tools:context=".HomeFragment"
|
||||
android:id="@+id/scrollView1"
|
||||
>
|
||||
|
||||
</ScrollView>
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/linearLayout1"
|
||||
android:layout_margin="10dp"
|
||||
android:orientation="vertical" />
|
||||
|
||||
</ScrollView>
|
||||
|
||||
|
||||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||
Loading…
Reference in New Issue