Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fragment Option for developers #23

Closed
wants to merge 5 commits into from

Conversation

pk-development
Copy link

@pk-development pk-development commented Jun 8, 2020

Add Fragment option so developers can use the FileBrowser in a fragment.

All the important functionality is now included in the Fragment option. FileBrowser Activity is also still available

The app that is implementing the fragment must add in styles.xml:

        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>

Eaxmple:

<resources>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>
</resources>

Screenshot_20200609-010158
Screenshot_20200609-010212
Screenshot_20200609-010232

Example use.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <fragment
        android:id="@+id/fragment"
        android:name="com.aditya.filebrowser.FileBrowserFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:layout="@layout/filebrowser_activity_frag" />
</RelativeLayout>

…view directly.

-Add new option to create file
-Update Create Folder/File dialog to add cancel button
…view directly.

-Add new option to create file
-Update Create Folder/File dialog to add cancel button
-Remove my code from Test Sample
This file was not needed for this pull request and did not need to be modified.

Not sure how it got into the PR
@pk-development
Copy link
Author

I'm canceling this PR. Want to add support of other versions of Fragment v4, v7 etc

@adityak368
Copy link
Owner

adityak368 commented Jun 10, 2020 via email

@pk-development
Copy link
Author

Hey, sure I can look at that. I use weights to scale the views and having 0.1 for the imageview seems to stretch too much. Will try with wrap content. Cool project and thanks for sharing.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants