bringToFront()
सही तरीका है, लेकिन, ध्यान दें कि आपको उच्चतम-स्तरीय दृश्य (अपने रूट दृश्य के तहत) पर कॉल bringToFront()
और invalidate()
विधि करना होगा , उदाहरण के लिए:
आपके विचार का पदानुक्रम है:
-RelativeLayout
|--LinearLayout1
|------Button1
|------Button2
|------Button3
|--ImageView
|--LinearLayout2
|------Button4
|------Button5
|------Button6
इसलिए, जब आप अपने बटनों (1-> 6) को वापस चेतन करते हैं, तो आपके बटन नीचे (नीचे) होंगे ImageView
। इस पर लाने के लिए (ऊपर) ImageView
आप कॉल करना होगा bringToFront()
और invalidate()
अपने पर विधि LinearLayout
रों। फिर यह काम करेगा :) ** नोट: android:clipChildren="false"
अपने रूट लेआउट या चेतन-व्यू के ग्रेडपेंट_लेआउट के लिए सेट करना याद रखें । आइए मेरे वास्तविक कोड पर एक नज़र डालें:
.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:hw="http://schemas.android.com/apk/res-auto"
android:id="@+id/layout_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/common_theme_color"
android:orientation="vertical" >
<com.binh.helloworld.customviews.HWActionBar
android:id="@+id/action_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/dimen_actionbar_height"
android:layout_alignParentTop="true"
hw:titleText="@string/app_name" >
</com.binh.helloworld.customviews.HWActionBar>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/action_bar"
android:clipChildren="false" >
<LinearLayout
android:id="@+id/layout_top"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:gravity="center_horizontal"
android:orientation="horizontal" >
</LinearLayout>
<ImageView
android:id="@+id/imgv_main"
android:layout_width="@dimen/common_imgv_height"
android:layout_height="@dimen/common_imgv_height"
android:layout_centerInParent="true"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_launcher" />
<LinearLayout
android:id="@+id/layout_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center_horizontal"
android:orientation="horizontal" >
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
कुछ कोड .java में
private LinearLayout layoutTop, layoutBottom;
...
layoutTop = (LinearLayout) rootView.findViewById(R.id.layout_top);
layoutBottom = (LinearLayout) rootView.findViewById(R.id.layout_bottom);
...
//when animate back
//dragedView is my layoutTop's child view (i added programmatically) (like buttons in above example)
dragedView.setVisibility(View.GONE);
layoutTop.bringToFront();
layoutTop.invalidate();
dragedView.startAnimation(animation); // TranslateAnimation
dragedView.setVisibility(View.VISIBLE);
Gluck!
RelativeLayout
XML में दिखाई देने वाले "शीर्ष" दृश्य के साथ उपयोग किया । देखें stackoverflow.com/a/31340762/1121497