स्क्रीन के नीचे से एक लेआउट स्लाइड करें


92

मेरे पास दृश्य से छिपा हुआ एक लेआउट है। एक बटन पर क्लिक करने के बाद मैं चाहता हूं कि नीचे से पूरी स्क्रीन की सामग्री को ऊपर की ओर धकेलें, व्हाट्सएप चैट स्क्रीन में इमोटिकॉन्स पैनल को दिखाता है।

मैंने स्लाइडिंग ड्रावर देखा है, जो मेरे लिए काम नहीं करता है। इसे एक हैंडल के रूप में एक छवि की आवश्यकता होती है जिसे स्क्रीन के केंद्र में दिखाया गया है, मैं ऐसा नहीं चाहता। यह मौजूदा स्क्रीन सामग्री पर भी स्लाइड करता है, मैं मौजूदा सामग्री को ऊपर की ओर ले जाने के लिए रास्ता ढूंढ रहा हूं।

अपडेट 1:

मैंने साकेत कचेला द्वारा सुझाए गए एनिमेशन का उपयोग करने की कोशिश की। लेकिन छिपे हुए लेआउट को कभी नहीं दिखाया गया है। यहाँ कोड है।

लेआउट (activity_main.xml):

<RelativeLayout
    android:id="@+id/main_screen"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" 
        android:layout_alignParentTop="true"/>

     <TextView
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="@string/hello_world" 
       android:layout_centerInParent="true"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Slide up / down"
        android:layout_alignParentBottom="true" 
        android:onClick="slideUpDown"/>

</RelativeLayout>

<RelativeLayout
    android:id="@+id/hidden_panel"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_below="@id/main_screen">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name" />

</RelativeLayout>

गतिविधि (MainActivity.java):

package com.example.slideuplayout;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;

public class MainActivity extends Activity {

private ViewGroup hiddenPanel;
private boolean isPanelShown;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    hiddenPanel = (ViewGroup)findViewById(R.id.hidden_panel);
    hiddenPanel.setVisibility(View.INVISIBLE);
    isPanelShown = false;
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

public void slideUpDown(final View view) {
    if(!isPanelShown) {
        // Show the panel
        Animation bottomUp = AnimationUtils.loadAnimation(this,
                R.anim.bottom_up);

        hiddenPanel.startAnimation(bottomUp);
        hiddenPanel.setVisibility(View.VISIBLE);
        isPanelShown = true;
    }
    else {
        // Hide the Panel
        Animation bottomDown = AnimationUtils.loadAnimation(this,
                R.anim.bottom_down);

        hiddenPanel.startAnimation(bottomDown);
        hiddenPanel.setVisibility(View.INVISIBLE);
        isPanelShown = false;
    }
}

}

एनिमेशन:

bottom_up.xml:

<?xml version="1.0" encoding="utf-8"?>
 <set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate 
       android:fromYDelta="75%p"
       android:toYDelta="0%p"
       android:fillAfter="true"
       android:duration="500" />
</set>

bottom_down.xml:

<?xml version="1.0" encoding="utf-8"?>
 <set xmlns:android="http://schemas.android.com/apk/res/android">
<translate 
    android:fromYDelta="0%p" 
    android:toYDelta="100%p" 
    android:fillAfter="true"
    android:interpolator="@android:anim/linear_interpolator"
    android:duration="500" />
</set>

किसी भी विचार यह कैसे किया जा सकता है?

धन्यवाद।


1
क्या आपने उत्तर देने की कोशिश की है?
संचित काछेला

1
आपका लेआउट hidden_panel अन्य लेआउट के पीछे जा सकता है। hiddenPanel.bringToFront()एनीमेशन शुरू करने से पहले कॉल करें और देखें कि क्या यह काम करता है। हमें यह भी बताएं, क्या आप के लिए ग्राफिकल लेआउट में hidden_panel दृश्य प्राप्त कर रहे हैं activity_main.xml?
imthegiga

1
@ बाबर का मतलब है जब आप ऊपर / नीचे बटन पर क्लिक करते हैं तो छिपे हुए लेआउट का विस्तार होना चाहिए या उसके अनुसार ढह जाना चाहिए? मैं फोन टाइप स्लाइडर?
TheFlash

1
@ बाबर मेरा जवाब काम करता है?
सुपरयुसर

1
आप github.com/Ali-Rezaei/SlidingDrawer को देख सकते हैं , जो आपके लिए किसी भी ओर से स्लाइड करना संभव बनाता है।
अली

जवाबों:


151

इन एनिमेशन का उपयोग करें:

bottom_up.xml

<?xml version="1.0" encoding="utf-8"?>
 <set xmlns:android="http://schemas.android.com/apk/res/android">
   <translate android:fromYDelta="75%p" android:toYDelta="0%p" 
    android:fillAfter="true"
 android:duration="500"/>
</set>

bottom_down.xml

 <?xml version="1.0" encoding="utf-8"?>
 <set xmlns:android="http://schemas.android.com/apk/res/android">

<translate android:fromYDelta="0%p" android:toYDelta="100%p" android:fillAfter="true"
            android:interpolator="@android:anim/linear_interpolator"
    android:duration="500" />

</set>

इस कोड का उपयोग अपनी गतिविधि में अपने दृष्टिकोण को छुपाने / पाने के लिए करें:

Animation bottomUp = AnimationUtils.loadAnimation(getContext(),
            R.anim.bottom_up);
ViewGroup hiddenPanel = (ViewGroup)findViewById(R.id.hidden_panel);
hiddenPanel.startAnimation(bottomUp);
hiddenPanel.setVisibility(View.VISIBLE);

1
मैंने उपरोक्त कोड का उपयोग करने की कोशिश की लेकिन छिपे हुए दृश्य ने कभी नहीं दिखाया। मैंने प्रश्न को अपडेट किया है और लेआउट और जावा कोड जोड़ा है। धन्यवाद।
बाबर

2
.setVisibility(View.VISIBLE)मेरा दिन बचाया!
20

1
@sanket हाय मैंने आपके कोड का उपयोग किया है यह अच्छा काम करता है लेकिन मुझे थोड़ी देर सोने के लिए धागा बनाना पड़ता है फिर मुझे नीचे के एनीमेशन का उपयोग करना होगा, तो क्या आप मेरी मदद कर सकते हैं कि कैसे करें?
अनस रजा

1
मुझे लगता है कि आप शुरुआत कर सकते हैं। इस डॉक डेवलपर को
Sanket Kachhela

6
एनीमेशन शुरू होने से पहले एक रिक्त स्थान है जहाँ मेरा दृश्य जाएगा। कोई उपाय ?
एक-ड्रॉइड

42

तुम पास थे। कुंजी छिपी हुई लेआउट को match_parentऊंचाई और वजन दोनों में बढ़ाना है । बस इसे के रूप में शुरू करते हैं View.GONE। इस तरह, एनिमेटरों में प्रतिशत का उपयोग करना ठीक से काम करता है।

लेआउट (activity_main.xml):

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:text="@string/hello_world" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="@string/hello_world" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:onClick="slideUpDown"
        android:text="Slide up / down" />

    <RelativeLayout
        android:id="@+id/hidden_panel"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/white"
        android:visibility="gone" >

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/app_name"
            android:layout_centerInParent="true"
            android:onClick="slideUpDown" />
    </RelativeLayout>

</RelativeLayout>

गतिविधि (MainActivity.java):

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;

public class OffscreenActivity extends Activity {
    private View hiddenPanel;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_activity);

        hiddenPanel = findViewById(R.id.hidden_panel);
    }

    public void slideUpDown(final View view) {
        if (!isPanelShown()) {
            // Show the panel
            Animation bottomUp = AnimationUtils.loadAnimation(this,
                    R.anim.bottom_up);

            hiddenPanel.startAnimation(bottomUp);
            hiddenPanel.setVisibility(View.VISIBLE);
        }
        else {
            // Hide the Panel
            Animation bottomDown = AnimationUtils.loadAnimation(this,
                    R.anim.bottom_down);

            hiddenPanel.startAnimation(bottomDown);
            hiddenPanel.setVisibility(View.GONE);
        }
    }

    private boolean isPanelShown() {
        return hiddenPanel.getVisibility() == View.VISIBLE;
    }

}

केवल दूसरी चीज जो मैंने बदली, वह थी bottom_up.xml। के बजाय

android:fromYDelta="75%p"

मैंनें इस्तेमाल किया:

android:fromYDelta="100%p"

लेकिन यह प्राथमिकता की बात है, मुझे लगता है।


यह मेरे लिए काम नहीं करता था, छिपे हुए पैनल पॉप अप होते थे, लेकिन स्क्रीन पर पहले से दिखाया गया पाठ छिपा हुआ था और 'स्लाइड अप / डाउन' बटन कोने से स्क्रीन के केंद्र तक क्षैतिज रूप से घूम रहा था।
बाबर

क्या आप बता सकते हैं कि स्लाइडिंग लेआउट पैरेंट लेआउट में अन्य सभी घटकों को कवर क्यों नहीं कर सकता है? मैंने आपके कोड को लागू किया। लेकिन अपनी आवश्यकताओं के लिए मैंने पैरेंट लेआउट में कुछ अन्य रैखिक लेआउट जोड़े। लेकिन जब स्लाइडिंग लेआउट दिखाई देता है, तो यह इन लेआउट्स को कवर नहीं कर सकता है
gabby

@ गैबी आपको android:zAdjustment="top"अपने Animationया पर सेट करने की आवश्यकता हो सकती है AnimtionSet
पॉल बर्क

यह काम नहीं किया। .my एनिमेशन इस प्रकार हैं: <? xml संस्करण = "1.0" एन्कोडिंग = "utf-8"?> <सेट xmlns: android = " schemas.android.com/apk/res/android "> <अनुवाद Android: fromDelta = "I% p" android: toYDelta = "100% p" Android: fillAfter = "true" android: interpolator = "@ android: anim / linear_interpolator" Android: period = "400" android: zAdvisment = "top" /> < / सेट>
गब्बी

3
इसे सही उत्तर के रूप में चिह्नित किया जाना चाहिए। धन्यवाद @PaulBurke
RmK

9

आपको अपने ऐप में बस कुछ लाइन जोड़ने की जरूरत है, कृपया इसे नीचे दिए गए लिंक से खोजें:

स्लाइड अप / डाउन एनीमेशन के साथ एक दृश्य दिखाएं और छुपाएं

बस इस तरह से अपने लेआउट में एक एनीमेशन जोड़ें:

mLayoutTab.animate()
  .translationYBy(120)
  .translationY(0)
  .setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime));

7

यहाँ मेरे लिए अंत में क्या काम किया गया है।

लेआउट:

activity_main.xml

<RelativeLayout
    android:id="@+id/main_screen"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:layout_alignParentTop="true"
    android:layout_alignParentBottom="true">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" 
        android:layout_alignParentTop="true"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        android:layout_centerInParent="true" />

    <Button
        android:id="@+id/slideButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Slide up / down"
        android:layout_alignParentBottom="true" 
        android:onClick="slideUpDown"/>

</RelativeLayout>

hidden_panel.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/hidden_panel"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Test" />
</LinearLayout>

जावा: पैकेज com.example.slideuplayout;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.AnimationUtils;

public class MainActivity extends Activity {

private ViewGroup hiddenPanel;
private ViewGroup mainScreen;
private boolean isPanelShown;
private ViewGroup root;

int screenHeight = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mainScreen = (ViewGroup)findViewById(R.id.main_screen);
    ViewTreeObserver vto = mainScreen.getViewTreeObserver(); 
    vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { 
        @Override 
        public void onGlobalLayout() { 
            screenHeight = mainScreen.getHeight();
            mainScreen.getViewTreeObserver().removeGlobalOnLayoutListener(this); 
        } 
    }); 

    root = (ViewGroup)findViewById(R.id.root);

    hiddenPanel = (ViewGroup)getLayoutInflater().inflate(R.layout.hidden_panel, root, false);
    hiddenPanel.setVisibility(View.INVISIBLE);

    root.addView(hiddenPanel);

    isPanelShown = false;
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

public void slideUpDown(final View view) {
    if(!isPanelShown) {
        // Show the panel
        mainScreen.layout(mainScreen.getLeft(),
                          mainScreen.getTop() - (screenHeight * 25/100), 
                          mainScreen.getRight(),
                          mainScreen.getBottom() - (screenHeight * 25/100));



        hiddenPanel.layout(mainScreen.getLeft(), mainScreen.getBottom(), mainScreen.getRight(), screenHeight);
        hiddenPanel.setVisibility(View.VISIBLE);

        Animation bottomUp = AnimationUtils.loadAnimation(this,
                R.anim.bottom_up);

        hiddenPanel.startAnimation(bottomUp);

        isPanelShown = true;
    }
    else {
        isPanelShown = false;

        // Hide the Panel
        Animation bottomDown = AnimationUtils.loadAnimation(this,
                R.anim.bottom_down);
        bottomDown.setAnimationListener(new AnimationListener() {

            @Override
            public void onAnimationStart(Animation arg0) {
                // TODO Auto-generated method stub

            }

            @Override
            public void onAnimationRepeat(Animation arg0) {
                // TODO Auto-generated method stub

            }

            @Override
            public void onAnimationEnd(Animation arg0) {
                isPanelShown = false;

                mainScreen.layout(mainScreen.getLeft(),
                          mainScreen.getTop() + (screenHeight * 25/100), 
                          mainScreen.getRight(),
                          mainScreen.getBottom() + (screenHeight * 25/100));

                hiddenPanel.layout(mainScreen.getLeft(), mainScreen.getBottom(), mainScreen.getRight(), screenHeight);
            }
        });
        hiddenPanel.startAnimation(bottomDown);
    }
}
}

1
@ बबर क्या जड़ है
1baga

1
यह मूल लेआउट है जो main_screen encapsulating है। ऐसा लगता है कि मैंने अपने द्वारा यहां पर चिपकाए गए अतिरिक्त यूआई तत्वों को हटाने की कोशिश की थी जो मैंने इसे कोड से हटा दिया था। यह या तो रैखिक या सापेक्ष लेआउट था।
बाबर

इसका एक स्वीकृत उत्तर और मूल तत्व नहीं है और कुछ भी नहीं है ???? यह कैसे स्वीकार किया जा सकता है ??
ज़हान सफ़लवा

5

इस लेआउट का उपयोग करें। यदि आप मुख्य दृश्य को सिकोड़ना चाहते हैं, तो आपको छिपी हुई पट्टी की ऊंचाई पर एनीमेशन जोड़ना होगा, इसे खरीदना बार पर अनुवाद एनीमेशन का उपयोग करने के लिए पर्याप्त हो सकता है, और मुख्य दृश्य ऊंचाई को चेतन के बजाय कूदना होगा।

<LinearLayout 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"
android:orientation="vertical" >

<RelativeLayout
    android:id="@+id/main_screen"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:text="@string/hello_world" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="@string/hello_world" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:onClick="slideUpDown"
        android:text="Slide up / down" />
</RelativeLayout>

<RelativeLayout
    android:id="@+id/hidden_panel"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:background="#fcc"
    android:visibility="visible" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name" />
</RelativeLayout>

</LinearLayout>

'स्लाइड अप' बटन क्लिक करने पर, मैं प्रोग्रामेटिक रूप से मेन_स्क्रीन की स्थिति को बदल रहा हूं और लेआउट पद्धति को कॉल करके ऊपर और छिपे हुए पैनल को बदल रहा हूं, फिर मैं छिपे हुए दृश्य पर प्रारंभ को कॉल कर रहा हूं। यह छिपे हुए पैनल को जगह में पॉप अप करता है। लेकिन किसी कारणवश पैनल के अंदर का बटन दिखाई नहीं दे रहा है। पैनल खाली है। कोई सुराग क्यों बटन दिखाई नहीं दे रहा है?
बाबर

आपको बस छिपे हुए पैनल की दृश्यता को दृश्यमान में बदलना चाहिए। आपके विवरण से, मैं अनुमान लगा रहा हूं कि बटन दृश्यता बदल गई थी, या बटन की चौड़ाई / ऊंचाई शून्य है
yoah

4

ठीक है, दो संभावित दृष्टिकोण हैं। सबसे सरल - एक स्लाइडिंग मेनू लाइब्रेरी का उपयोग करना है । यह एक नीचे स्लाइडिंग मेनू बनाने की अनुमति देता है, यह नीचे दिखाई देने वाले शीर्ष कंटेनर को चेतन कर सकता है, यह दोनों को आपकी उंगली से खींचता है, या बटन के माध्यम से प्रोग्रामेटिक रूप से एनिमेट कर सकता है (स्टैटिकड्रावर)।

कठिन तरीका - यदि आप एनिमेशन का उपयोग करना चाहते हैं, जैसा कि पहले ही सुझाव दिया गया था। एनिमेशन के साथ आपको अपने लेआउट को बदलना चाहिए। इसलिए किसी भी एनिमेशन के बिना अंतिम स्थिति में अपना लेआउट परिवर्तन करने के लिए पहले प्रयास करें। क्योंकि यह बहुत संभावना है कि आप अपने विचारों को RelativeLayout में ठीक से बाहर नहीं कर रहे हैं, इसलिए भले ही आप अपना नीचे का दृश्य दिखाते हों, यह शीर्ष पर अस्पष्ट रहता है। एक बार जब आप उचित लेआउट परिवर्तन प्राप्त कर लेते हैं - आपको बस इतना करना है कि लेआउट से पहले अनुवादों को याद रखें और अनुवाद एनीमेशन लेआउट का अनुवाद करें।


छिपे हुए पैनल का बटन दिखाई नहीं दे रहा था, शायद इसलिए कि पैनल ऑफ स्क्रीन था। मैंने जो भी किया वह लेआउट को स्क्रीन पर छिपाकर रखा गया था, फिर इसे सही स्थान पर रखने के लिए एनिमेशन का उपयोग किया।
बाबर

4
मुझे नहीं लगता कि स्लाइडिंगमेनू नीचे से अनुमति देता है; बाएं, दाएं केवल, मैं मानता हूं
wkhatch

2
@wkchch सही है, एक बॉटम स्लाइडिंगमेनू अपवाद को फेंकता है: "स्लाइडिंगमेन्यू मोड में LEFT, RIGHT, या LEFT_RIGHT होना चाहिए" जो इस उत्तर के साथ प्रलेखन और इसके विपरीत है।
ajwest

4

एनीमेशन कोड बनाने के लिए मेरा कोड, एक्सएमएल के बिना नीचे स्लाइड करें

private static ObjectAnimator createBottomUpAnimation(View view,
        AnimatorListenerAdapter listener, float distance) {
    ObjectAnimator animator = ObjectAnimator.ofFloat(view, "translationY", -distance);
//        animator.setDuration(???)
    animator.removeAllListeners();
    if (listener != null) {
        animator.addListener(listener);
    }
    return animator;
}

public static ObjectAnimator createTopDownAnimation(View view, AnimatorListenerAdapter listener,
        float distance) {
    view.setTranslationY(-distance);
    ObjectAnimator animator = ObjectAnimator.ofFloat(view, "translationY", 0);
    animator.removeAllListeners();
    if (listener != null) {
        animator.addListener(listener);
    }
    return animator;
}

नीचे स्लाइड के लिए उपयोग करना

createTopDownAnimation(myYellowView, null, myYellowView.getHeight()).start();

स्लाइड के लिए

createBottomUpAnimation(myYellowView, null, myYellowView.getHeight()).start();

यहां छवि विवरण दर्ज करें


3

इस नीचे दिए गए कोड की कोशिश करो, इसकी बहुत ही छोटी और सरल।

transalate_anim.xml

<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2013 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:duration="4000"
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:repeatCount="infinite"
        android:toXDelta="0"
        android:toYDelta="-90%p" />

    <alpha xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="4000"
        android:fromAlpha="0.0"
        android:repeatCount="infinite"
        android:toAlpha="1.0" />
</set>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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="match_parent"
    tools:context="com.naveen.congratulations.MainActivity">


    <ImageView
        android:id="@+id/image_1"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_marginBottom="8dp"
        android:layout_marginStart="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:srcCompat="@drawable/balloons" />
</android.support.constraint.ConstraintLayout>

MainActivity.java

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        final ImageView imageView1 = (ImageView) findViewById(R.id.image_1);
        imageView1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                startBottomToTopAnimation(imageView1);
            }
        });

    }

    private void startBottomToTopAnimation(View view) {
        view.startAnimation(AnimationUtils.loadAnimation(this, R.anim.translate_anim));
    }
}

छवि के नीचे_उपकरण


2

यहाँ एक विस्तार के रूप में एक समाधान है [ https://stackoverflow.com/a/46644736/10249774]

निचला पैनल मुख्य सामग्री को ऊपर की ओर धकेल रहा है

https://imgur.com/a/6nxewE0

activity_main.xml

<?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"
tools:context=".MainActivity">
<Button
    android:id="@+id/my_button"
    android:layout_marginTop="10dp"
    android:onClick="onSlideViewButtonClick"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
<LinearLayout
android:id="@+id/main_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="main "
    android:textSize="70dp"/>
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="main "
    android:textSize="70dp"/>
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="main "
    android:textSize="70dp"/>
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="main"
    android:textSize="70dp"/>
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="main"
    android:textSize="70dp"/>
</LinearLayout>
<LinearLayout
    android:id="@+id/footer_view"
    android:background="#a6e1aa"
    android:orientation="vertical"
    android:gravity="center_horizontal"
    android:layout_alignParentBottom="true"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="footer content"
        android:textSize="40dp" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="footer content"
        android:textSize="40dp" />
  </LinearLayout>
</RelativeLayout>

मुख्य गतिविधि:

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.TranslateAnimation;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
private Button myButton;
private View footerView;
private View mainView;
private boolean isUp;
private int anim_duration = 700;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    footerView = findViewById(R.id.footer_view);
    mainView = findViewById(R.id.main_view);
    myButton = findViewById(R.id.my_button);

    // initialize as invisible (could also do in xml)
    footerView.setVisibility(View.INVISIBLE);
    myButton.setText("Slide up");
    isUp = false;
}
public void slideUp(View mainView , View footer_view){
    footer_view.setVisibility(View.VISIBLE);
    TranslateAnimation animate_footer = new TranslateAnimation(
            0,                 // fromXDelta
            0,                 // toXDelta
            footer_view.getHeight(),  // fromYDelta
            0);                // toYDelta
    animate_footer.setDuration(anim_duration);
    animate_footer.setFillAfter(true);
    footer_view.startAnimation(animate_footer);

    mainView.setVisibility(View.VISIBLE);
    TranslateAnimation animate_main = new TranslateAnimation(
            0,                 // fromXDelta
            0,                 // toXDelta
            0,  // fromYDelta
            (0-footer_view.getHeight()));                // toYDelta
    animate_main.setDuration(anim_duration);
    animate_main.setFillAfter(true);
    mainView.startAnimation(animate_main);
}
public void slideDown(View mainView , View footer_view){
    TranslateAnimation animate_footer = new TranslateAnimation(
            0,                 // fromXDelta
            0,                 // toXDelta
            0,                 // fromYDelta
            footer_view.getHeight()); // toYDelta
    animate_footer.setDuration(anim_duration);
    animate_footer.setFillAfter(true);
    footer_view.startAnimation(animate_footer);


    TranslateAnimation animate_main = new TranslateAnimation(
            0,                 // fromXDelta
            0,                 // toXDelta
            (0-footer_view.getHeight()),  // fromYDelta
            0);                // toYDelta
    animate_main.setDuration(anim_duration);
    animate_main.setFillAfter(true);
    mainView.startAnimation(animate_main);
}

public void onSlideViewButtonClick(View view) {
    if (isUp) {
        slideDown(mainView , footerView);
        myButton.setText("Slide up");
    } else {
        slideUp(mainView , footerView);
        myButton.setText("Slide down");
    }
    isUp = !isUp;
}
}

1

आप मुख्य स्क्रीन और दूसरी स्क्रीन को परिभाषित कर सकते हैं जिसे आप टुकड़े के रूप में स्क्रॉल करना चाहते हैं। जब मेनस्क्रीन पर बटन को धक्का दिया जाता है, तो टुकड़ा उस गतिविधि को एक संदेश भेजेगा जो तब मेनस्क्रीन को उस जगह से बदलेगा जिसे आप स्क्रॉल करना चाहते हैं और प्रतिस्थापन को चेतन करना चाहते हैं।


1
मैं बस चाहता हूं कि स्क्रीन पर स्क्रीन एक बार छिपे हुए पैनल द्वारा ऊपर की तरफ धकेल दी जाए। मैं स्क्रीन सामग्री / टुकड़े को प्रतिस्थापित नहीं करना चाहता। मैं इसे एनिमेशन और लेआउट टिंकरिंग के साथ काम करने में कामयाब रहा।
बाबर
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.