Relative layout Background Transparent(Entirely Hidden) in Popup Android












0














I have created dialog xml for popup .In that xml i have Created CardView I want image on the top of CardView. Everything working Fine but half background of the image should be Transparent.which means no views should be visible, I have tried Alpha but not working it hiding all views.I have also tried @android:color:transparent.



Here is my code:



<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="40dp"
android:clickable="true"
android:focusable="true"
android:foreground="?android:attr/selectableItemBackground"
app:cardBackgroundColor="@android:color/transparent"
app:cardCornerRadius="10dp"
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">


<LinearLayout
android:id="@+id/linear_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginTop="5dp"
android:layout_marginRight="30dp"
android:orientation="vertical">


<TextView
android:id="@+id/textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Total Project"
android:textStyle="bold" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="100" />

</LinearLayout>

<LinearLayout
android:id="@+id/linearbox"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_below="@+id/linear_text"
android:layout_marginTop="25dp"
android:weightSum="3">

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorGrayLight" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="4dp"
android:text="Project Live"
android:textStyle="bold" />


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="4dp"
android:text="5"
android:textStyle="bold" />


</LinearLayout>

<View
android:layout_width="1dp"
android:layout_height="wrap_content"
android:background="@color/colorGrayLight" />

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorGrayLight" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="4dp"
android:text="Project Wip"
android:textStyle="bold" />


<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="4dp"
android:text="5"
android:textStyle="bold" />


</LinearLayout>

<View
android:layout_width="1dp"
android:layout_height="wrap_content"
android:background="@color/colorGrayLight" />

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorGrayLight" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="4dp"
android:text="Project Closed"
android:textStyle="bold" />


<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="4dp"
android:text="5"
android:textStyle="bold" />


</LinearLayout>
</LinearLayout>
</RelativeLayout>
</android.support.v7.widget.CardView>

</LinearLayout>


<ImageView
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
android:src="@drawable/admin"
tools:ignore="ContentDescription" />


Dialog:



  private void showDialog() {
// creating the fullscreen dialog
final Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.dialog);

if (dialog.getWindow() != null) {
// dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.WHITE));
dialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
dialog.getWindow().setLayout(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
}
dialog.setCanceledOnTouchOutside(false);
dialog.setCancelable(true);
dialog.show();
}









share|improve this question









New contributor




siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0














    I have created dialog xml for popup .In that xml i have Created CardView I want image on the top of CardView. Everything working Fine but half background of the image should be Transparent.which means no views should be visible, I have tried Alpha but not working it hiding all views.I have also tried @android:color:transparent.



    Here is my code:



    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"

    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginTop="40dp"
    android:clickable="true"
    android:focusable="true"
    android:foreground="?android:attr/selectableItemBackground"
    app:cardBackgroundColor="@android:color/transparent"
    app:cardCornerRadius="10dp"
    app:cardPreventCornerOverlap="false"
    app:cardUseCompatPadding="true">

    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">


    <LinearLayout
    android:id="@+id/linear_text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_marginTop="5dp"
    android:layout_marginRight="30dp"
    android:orientation="vertical">


    <TextView
    android:id="@+id/textview1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Total Project"
    android:textStyle="bold" />

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="100" />

    </LinearLayout>

    <LinearLayout
    android:id="@+id/linearbox"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_below="@+id/linear_text"
    android:layout_marginTop="25dp"
    android:weightSum="3">

    <LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical">

    <View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="@color/colorGrayLight" />

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:padding="4dp"
    android:text="Project Live"
    android:textStyle="bold" />


    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:padding="4dp"
    android:text="5"
    android:textStyle="bold" />


    </LinearLayout>

    <View
    android:layout_width="1dp"
    android:layout_height="wrap_content"
    android:background="@color/colorGrayLight" />

    <LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical">

    <View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="@color/colorGrayLight" />

    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="4dp"
    android:text="Project Wip"
    android:textStyle="bold" />


    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="4dp"
    android:text="5"
    android:textStyle="bold" />


    </LinearLayout>

    <View
    android:layout_width="1dp"
    android:layout_height="wrap_content"
    android:background="@color/colorGrayLight" />

    <LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical">

    <View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="@color/colorGrayLight" />

    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="4dp"
    android:text="Project Closed"
    android:textStyle="bold" />


    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="4dp"
    android:text="5"
    android:textStyle="bold" />


    </LinearLayout>
    </LinearLayout>
    </RelativeLayout>
    </android.support.v7.widget.CardView>

    </LinearLayout>


    <ImageView
    android:layout_width="80dp"
    android:layout_height="80dp"
    android:layout_marginStart="10dp"
    android:layout_marginLeft="10dp"
    android:src="@drawable/admin"
    tools:ignore="ContentDescription" />


    Dialog:



      private void showDialog() {
    // creating the fullscreen dialog
    final Dialog dialog = new Dialog(this);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.setContentView(R.layout.dialog);

    if (dialog.getWindow() != null) {
    // dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.WHITE));
    dialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
    dialog.getWindow().setLayout(
    ViewGroup.LayoutParams.WRAP_CONTENT,
    ViewGroup.LayoutParams.WRAP_CONTENT);
    }
    dialog.setCanceledOnTouchOutside(false);
    dialog.setCancelable(true);
    dialog.show();
    }









    share|improve this question









    New contributor




    siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0







      I have created dialog xml for popup .In that xml i have Created CardView I want image on the top of CardView. Everything working Fine but half background of the image should be Transparent.which means no views should be visible, I have tried Alpha but not working it hiding all views.I have also tried @android:color:transparent.



      Here is my code:



      <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content">

      <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical">

      <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto"

      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:layout_marginTop="40dp"
      android:clickable="true"
      android:focusable="true"
      android:foreground="?android:attr/selectableItemBackground"
      app:cardBackgroundColor="@android:color/transparent"
      app:cardCornerRadius="10dp"
      app:cardPreventCornerOverlap="false"
      app:cardUseCompatPadding="true">

      <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">


      <LinearLayout
      android:id="@+id/linear_text"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentRight="true"
      android:layout_marginTop="5dp"
      android:layout_marginRight="30dp"
      android:orientation="vertical">


      <TextView
      android:id="@+id/textview1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Total Project"
      android:textStyle="bold" />

      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:text="100" />

      </LinearLayout>

      <LinearLayout
      android:id="@+id/linearbox"
      android:layout_width="match_parent"
      android:layout_height="100dp"
      android:layout_below="@+id/linear_text"
      android:layout_marginTop="25dp"
      android:weightSum="3">

      <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical">

      <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/colorGrayLight" />

      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:padding="4dp"
      android:text="Project Live"
      android:textStyle="bold" />


      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:padding="4dp"
      android:text="5"
      android:textStyle="bold" />


      </LinearLayout>

      <View
      android:layout_width="1dp"
      android:layout_height="wrap_content"
      android:background="@color/colorGrayLight" />

      <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical">

      <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/colorGrayLight" />

      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="Project Wip"
      android:textStyle="bold" />


      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="5"
      android:textStyle="bold" />


      </LinearLayout>

      <View
      android:layout_width="1dp"
      android:layout_height="wrap_content"
      android:background="@color/colorGrayLight" />

      <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical">

      <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/colorGrayLight" />

      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="Project Closed"
      android:textStyle="bold" />


      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="5"
      android:textStyle="bold" />


      </LinearLayout>
      </LinearLayout>
      </RelativeLayout>
      </android.support.v7.widget.CardView>

      </LinearLayout>


      <ImageView
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:layout_marginStart="10dp"
      android:layout_marginLeft="10dp"
      android:src="@drawable/admin"
      tools:ignore="ContentDescription" />


      Dialog:



        private void showDialog() {
      // creating the fullscreen dialog
      final Dialog dialog = new Dialog(this);
      dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
      dialog.setContentView(R.layout.dialog);

      if (dialog.getWindow() != null) {
      // dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.WHITE));
      dialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
      dialog.getWindow().setLayout(
      ViewGroup.LayoutParams.WRAP_CONTENT,
      ViewGroup.LayoutParams.WRAP_CONTENT);
      }
      dialog.setCanceledOnTouchOutside(false);
      dialog.setCancelable(true);
      dialog.show();
      }









      share|improve this question









      New contributor




      siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I have created dialog xml for popup .In that xml i have Created CardView I want image on the top of CardView. Everything working Fine but half background of the image should be Transparent.which means no views should be visible, I have tried Alpha but not working it hiding all views.I have also tried @android:color:transparent.



      Here is my code:



      <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content">

      <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical">

      <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto"

      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:layout_marginTop="40dp"
      android:clickable="true"
      android:focusable="true"
      android:foreground="?android:attr/selectableItemBackground"
      app:cardBackgroundColor="@android:color/transparent"
      app:cardCornerRadius="10dp"
      app:cardPreventCornerOverlap="false"
      app:cardUseCompatPadding="true">

      <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">


      <LinearLayout
      android:id="@+id/linear_text"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentRight="true"
      android:layout_marginTop="5dp"
      android:layout_marginRight="30dp"
      android:orientation="vertical">


      <TextView
      android:id="@+id/textview1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Total Project"
      android:textStyle="bold" />

      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:text="100" />

      </LinearLayout>

      <LinearLayout
      android:id="@+id/linearbox"
      android:layout_width="match_parent"
      android:layout_height="100dp"
      android:layout_below="@+id/linear_text"
      android:layout_marginTop="25dp"
      android:weightSum="3">

      <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical">

      <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/colorGrayLight" />

      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:padding="4dp"
      android:text="Project Live"
      android:textStyle="bold" />


      <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:padding="4dp"
      android:text="5"
      android:textStyle="bold" />


      </LinearLayout>

      <View
      android:layout_width="1dp"
      android:layout_height="wrap_content"
      android:background="@color/colorGrayLight" />

      <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical">

      <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/colorGrayLight" />

      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="Project Wip"
      android:textStyle="bold" />


      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="5"
      android:textStyle="bold" />


      </LinearLayout>

      <View
      android:layout_width="1dp"
      android:layout_height="wrap_content"
      android:background="@color/colorGrayLight" />

      <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical">

      <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="@color/colorGrayLight" />

      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="Project Closed"
      android:textStyle="bold" />


      <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:padding="4dp"
      android:text="5"
      android:textStyle="bold" />


      </LinearLayout>
      </LinearLayout>
      </RelativeLayout>
      </android.support.v7.widget.CardView>

      </LinearLayout>


      <ImageView
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:layout_marginStart="10dp"
      android:layout_marginLeft="10dp"
      android:src="@drawable/admin"
      tools:ignore="ContentDescription" />


      Dialog:



        private void showDialog() {
      // creating the fullscreen dialog
      final Dialog dialog = new Dialog(this);
      dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
      dialog.setContentView(R.layout.dialog);

      if (dialog.getWindow() != null) {
      // dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.WHITE));
      dialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
      dialog.getWindow().setLayout(
      ViewGroup.LayoutParams.WRAP_CONTENT,
      ViewGroup.LayoutParams.WRAP_CONTENT);
      }
      dialog.setCanceledOnTouchOutside(false);
      dialog.setCancelable(true);
      dialog.show();
      }






      android android-layout android-relativelayout






      share|improve this question









      New contributor




      siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 9 hours ago









      Onik

      11.1k103762




      11.1k103762






      New contributor




      siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked yesterday









      siva

      134




      134




      New contributor




      siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      siva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          siva is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53944400%2frelative-layout-background-transparententirely-hidden-in-popup-android%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          siva is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          siva is a new contributor. Be nice, and check out our Code of Conduct.













          siva is a new contributor. Be nice, and check out our Code of Conduct.












          siva is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53944400%2frelative-layout-background-transparententirely-hidden-in-popup-android%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Monofisismo

          Angular Downloading a file using contenturl with Basic Authentication

          Olmecas