Code Monkey home page Code Monkey logo

Comments (6)

dude0367 avatar dude0367 commented on August 28, 2024 5

I had the same issue, the that I found is to use
android:orientation="vertical"
as an attribute because it extends LinearLayout. Enjoy.

from expandablelayout.

mojotti avatar mojotti commented on August 28, 2024 4

Hello AbduazizKayumov,

I managed to find a solution for this problem. I have also text that is coming from server so it will change it's size dynamically.

You have to use ExpandableRelativeLayout like this:

    <Button
        android:id="@+id/expandableButton1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/dark_green2"
        android:drawableRight="@android:drawable/arrow_down_float"
        android:onClick="expandableButton1"
        android:text=""
        android:textColor="#fff"
        android:layout_marginTop="16dp"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:visibility="gone" />

    <com.github.aakira.expandablelayout.ExpandableRelativeLayout
        android:id="@+id/expandableLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/light_green2"
        android:padding="16dp"
        app:ael_duration="400"
        app:ael_expanded="true"
        app:ael_interpolator="bounce"
        app:ael_orientation="vertical"
        android:layout_below="@+id/expandableButton1"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:visibility="gone">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/expandableText1"
            android:text="Loading stuff from internet..."/>
    </com.github.aakira.expandablelayout.ExpandableRelativeLayout>

Note here that I use: android:visibility="gone" by default. This makes view invisible at first. We will make it visible on Java code.

Then on Java code, add function like this, before you call your mOverlayText.setOnClickListener(new View.OnClickListener()

public void makeViewsVisible() {
View view1 = findViewById(R.id.expandableButton1);
View view1_text = findViewById(R.id.expandableLayout1);

view1.setVisibility(View.VISIBLE);
view1_text.setVisibility(View.VISIBLE);

}

You have to also call this function from inside your mOverlayText.setOnClickListener(new View.OnClickListener().

For me it works, does not matter that I have text coming from server. Also there is no problem with animation.

Hope this helps!

from expandablelayout.

mojotti avatar mojotti commented on August 28, 2024

I'm having exactly the same problem!

from expandablelayout.

aplocher avatar aplocher commented on August 28, 2024

@dude0367 your solution fixed it for me. I have both ael_orientation=vertical and android:orientation='vertical' and it works now. Thanks

from expandablelayout.

sankar07 avatar sankar07 commented on August 28, 2024

ael_orientation=vertical and android:orientation='vertical' and it works now. Thanks

from expandablelayout.

kirtanparmar avatar kirtanparmar commented on August 28, 2024

I had the same issue, the that I found is to use
android:orientation="vertical"
as an attribute because it extends LinearLayout. Enjoy.

Not working for me.

@dude0367 your solution fixed it for me. I have both ael_orientation=vertical and android:orientation='vertical' and it works now. Thanks

With this works fine.

from expandablelayout.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.