Give custom border to TextView












0















How can I give the custom border to TextView where:

1) left and right border is 2 dp and with the different color with little opacity

2) top and bottom border is 1 dp

3) The text of TextView should be visible. right now What I have created is not showing the text of textview



<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FF000000" />
<solid android:color="#FFDDDDDD" />

</shape>
</item>

<item
android:bottom="1dp"
android:left="2dp"
android:right="15dp"
android:top="1dp">
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FFDDDDDD" />
<solid android:color="#00000000" />
</shape>
</item>











share|improve this question

























  • Can you show required background image also?

    – Khemraj
    Nov 28 '18 at 7:39
















0















How can I give the custom border to TextView where:

1) left and right border is 2 dp and with the different color with little opacity

2) top and bottom border is 1 dp

3) The text of TextView should be visible. right now What I have created is not showing the text of textview



<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FF000000" />
<solid android:color="#FFDDDDDD" />

</shape>
</item>

<item
android:bottom="1dp"
android:left="2dp"
android:right="15dp"
android:top="1dp">
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FFDDDDDD" />
<solid android:color="#00000000" />
</shape>
</item>











share|improve this question

























  • Can you show required background image also?

    – Khemraj
    Nov 28 '18 at 7:39














0












0








0








How can I give the custom border to TextView where:

1) left and right border is 2 dp and with the different color with little opacity

2) top and bottom border is 1 dp

3) The text of TextView should be visible. right now What I have created is not showing the text of textview



<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FF000000" />
<solid android:color="#FFDDDDDD" />

</shape>
</item>

<item
android:bottom="1dp"
android:left="2dp"
android:right="15dp"
android:top="1dp">
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FFDDDDDD" />
<solid android:color="#00000000" />
</shape>
</item>











share|improve this question
















How can I give the custom border to TextView where:

1) left and right border is 2 dp and with the different color with little opacity

2) top and bottom border is 1 dp

3) The text of TextView should be visible. right now What I have created is not showing the text of textview



<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FF000000" />
<solid android:color="#FFDDDDDD" />

</shape>
</item>

<item
android:bottom="1dp"
android:left="2dp"
android:right="15dp"
android:top="1dp">
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#FFDDDDDD" />
<solid android:color="#00000000" />
</shape>
</item>








android xml android-layout android-textview android-drawable






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 28 '18 at 9:21









Viraj Patel

981315




981315










asked Nov 28 '18 at 7:38









unflagged.destinationunflagged.destination

6843927




6843927













  • Can you show required background image also?

    – Khemraj
    Nov 28 '18 at 7:39



















  • Can you show required background image also?

    – Khemraj
    Nov 28 '18 at 7:39

















Can you show required background image also?

– Khemraj
Nov 28 '18 at 7:39





Can you show required background image also?

– Khemraj
Nov 28 '18 at 7:39












3 Answers
3






active

oldest

votes


















1














use alpha color according to your recruitment



<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#080808" />

</shape>
</item>
<item
android:bottom="2dp"
>
<shape android:shape="rectangle">
<solid android:color="#76d63f" />

</shape>
</item>
<item
android:bottom="2dp"
android:top="2dp"
>
<shape android:shape="rectangle">
<solid android:color="#d63f60" />

</shape>
</item>
<item
android:bottom="2dp"
android:top="2dp"
android:left="2dp"
android:right="2dp"
>
<shape android:shape="rectangle">
<solid android:color="#3fa9d6" />

</shape>
</item>
</layer-list>





share|improve this answer
























  • Its giving me 2dp border as top,I changed it to 1 but still it shows same 2dp.

    – unflagged.destination
    Nov 28 '18 at 9:30






  • 1





    you need to change both for 3rd and 4th item in list

    – Zahoor Saleem
    Nov 28 '18 at 9:34











  • Thanks, But when I add corner radius it makes it round from inner side whereas corner from outside remains sharp. Any idea on this?

    – unflagged.destination
    Nov 28 '18 at 10:00





















0














<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#76d273" />
</shape>
</item>
<item android:bottom="2dp">
<shape android:shape="rectangle">
<solid android:color="#76d63f" />

</shape>
</item>
<item
android:bottom="2dp"
android:top="2dp">
<shape android:shape="rectangle">
<solid android:color="#d63f60" />

</shape>
</item>
<item
android:bottom="2dp"
android:left="2dp"
android:right="2dp"
android:top="2dp">
<shape android:shape="rectangle">
<solid android:color="@android:color/white" />
</shape>
</item>
</layer-list>


add this code in your drawable(test_drawable) file and set to textview



android:background="@drawable/test_drawable"





share|improve this answer































    0














    Check my code I have integrated the same.



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

    //for top and bottom borders
    <item
    android:left="-2dp"
    android:right="-2dp">
    <shape android:shape="rectangle">
    <stroke
    android:width="1dp"
    android:color="#fff70b" />
    <solid android:color="@android:color/transparent" />
    </shape>
    </item>

    //for left and right border
    <item
    android:bottom="-2dp"
    android:top="-2dp">
    <shape android:shape="rectangle">
    <stroke
    android:width="2dp"
    android:color="#e90c0c" />
    <solid android:color="@android:color/transparent" />
    </shape>

    </item>
    </layer-list>


    Please note that opacity should be defined when creating your color only. While writing your color in colors.xml, you can change opacity like shown in below screenshot. Either change the 255 to your chosen opacity or use the bottom bar.



    enter image description here



    Also, you need to define the solid tag for each border and apply transparent color in order to make your TextView visible.
    After applying the code in drawable, you will be able to see some preview like this :



    enter image description here



    Good Luck..!!






    share|improve this answer























      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
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53514390%2fgive-custom-border-to-textview%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      use alpha color according to your recruitment



      <?xml version="1.0" encoding="utf-8"?>
      <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
      <item>
      <shape android:shape="rectangle">
      <solid android:color="#080808" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#76d63f" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#d63f60" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      android:left="2dp"
      android:right="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#3fa9d6" />

      </shape>
      </item>
      </layer-list>





      share|improve this answer
























      • Its giving me 2dp border as top,I changed it to 1 but still it shows same 2dp.

        – unflagged.destination
        Nov 28 '18 at 9:30






      • 1





        you need to change both for 3rd and 4th item in list

        – Zahoor Saleem
        Nov 28 '18 at 9:34











      • Thanks, But when I add corner radius it makes it round from inner side whereas corner from outside remains sharp. Any idea on this?

        – unflagged.destination
        Nov 28 '18 at 10:00


















      1














      use alpha color according to your recruitment



      <?xml version="1.0" encoding="utf-8"?>
      <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
      <item>
      <shape android:shape="rectangle">
      <solid android:color="#080808" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#76d63f" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#d63f60" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      android:left="2dp"
      android:right="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#3fa9d6" />

      </shape>
      </item>
      </layer-list>





      share|improve this answer
























      • Its giving me 2dp border as top,I changed it to 1 but still it shows same 2dp.

        – unflagged.destination
        Nov 28 '18 at 9:30






      • 1





        you need to change both for 3rd and 4th item in list

        – Zahoor Saleem
        Nov 28 '18 at 9:34











      • Thanks, But when I add corner radius it makes it round from inner side whereas corner from outside remains sharp. Any idea on this?

        – unflagged.destination
        Nov 28 '18 at 10:00
















      1












      1








      1







      use alpha color according to your recruitment



      <?xml version="1.0" encoding="utf-8"?>
      <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
      <item>
      <shape android:shape="rectangle">
      <solid android:color="#080808" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#76d63f" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#d63f60" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      android:left="2dp"
      android:right="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#3fa9d6" />

      </shape>
      </item>
      </layer-list>





      share|improve this answer













      use alpha color according to your recruitment



      <?xml version="1.0" encoding="utf-8"?>
      <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
      <item>
      <shape android:shape="rectangle">
      <solid android:color="#080808" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#76d63f" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#d63f60" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp"
      android:left="2dp"
      android:right="2dp"
      >
      <shape android:shape="rectangle">
      <solid android:color="#3fa9d6" />

      </shape>
      </item>
      </layer-list>






      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Nov 28 '18 at 7:45









      Zahoor SaleemZahoor Saleem

      32229




      32229













      • Its giving me 2dp border as top,I changed it to 1 but still it shows same 2dp.

        – unflagged.destination
        Nov 28 '18 at 9:30






      • 1





        you need to change both for 3rd and 4th item in list

        – Zahoor Saleem
        Nov 28 '18 at 9:34











      • Thanks, But when I add corner radius it makes it round from inner side whereas corner from outside remains sharp. Any idea on this?

        – unflagged.destination
        Nov 28 '18 at 10:00





















      • Its giving me 2dp border as top,I changed it to 1 but still it shows same 2dp.

        – unflagged.destination
        Nov 28 '18 at 9:30






      • 1





        you need to change both for 3rd and 4th item in list

        – Zahoor Saleem
        Nov 28 '18 at 9:34











      • Thanks, But when I add corner radius it makes it round from inner side whereas corner from outside remains sharp. Any idea on this?

        – unflagged.destination
        Nov 28 '18 at 10:00



















      Its giving me 2dp border as top,I changed it to 1 but still it shows same 2dp.

      – unflagged.destination
      Nov 28 '18 at 9:30





      Its giving me 2dp border as top,I changed it to 1 but still it shows same 2dp.

      – unflagged.destination
      Nov 28 '18 at 9:30




      1




      1





      you need to change both for 3rd and 4th item in list

      – Zahoor Saleem
      Nov 28 '18 at 9:34





      you need to change both for 3rd and 4th item in list

      – Zahoor Saleem
      Nov 28 '18 at 9:34













      Thanks, But when I add corner radius it makes it round from inner side whereas corner from outside remains sharp. Any idea on this?

      – unflagged.destination
      Nov 28 '18 at 10:00







      Thanks, But when I add corner radius it makes it round from inner side whereas corner from outside remains sharp. Any idea on this?

      – unflagged.destination
      Nov 28 '18 at 10:00















      0














      <?xml version="1.0" encoding="utf-8"?>
      <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
      <item>
      <shape android:shape="rectangle">
      <solid android:color="#76d273" />
      </shape>
      </item>
      <item android:bottom="2dp">
      <shape android:shape="rectangle">
      <solid android:color="#76d63f" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:top="2dp">
      <shape android:shape="rectangle">
      <solid android:color="#d63f60" />

      </shape>
      </item>
      <item
      android:bottom="2dp"
      android:left="2dp"
      android:right="2dp"
      android:top="2dp">
      <shape android:shape="rectangle">
      <solid android:color="@android:color/white" />
      </shape>
      </item>
      </layer-list>


      add this code in your drawable(test_drawable) file and set to textview



      android:background="@drawable/test_drawable"





      share|improve this answer




























        0














        <?xml version="1.0" encoding="utf-8"?>
        <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item>
        <shape android:shape="rectangle">
        <solid android:color="#76d273" />
        </shape>
        </item>
        <item android:bottom="2dp">
        <shape android:shape="rectangle">
        <solid android:color="#76d63f" />

        </shape>
        </item>
        <item
        android:bottom="2dp"
        android:top="2dp">
        <shape android:shape="rectangle">
        <solid android:color="#d63f60" />

        </shape>
        </item>
        <item
        android:bottom="2dp"
        android:left="2dp"
        android:right="2dp"
        android:top="2dp">
        <shape android:shape="rectangle">
        <solid android:color="@android:color/white" />
        </shape>
        </item>
        </layer-list>


        add this code in your drawable(test_drawable) file and set to textview



        android:background="@drawable/test_drawable"





        share|improve this answer


























          0












          0








          0







          <?xml version="1.0" encoding="utf-8"?>
          <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
          <item>
          <shape android:shape="rectangle">
          <solid android:color="#76d273" />
          </shape>
          </item>
          <item android:bottom="2dp">
          <shape android:shape="rectangle">
          <solid android:color="#76d63f" />

          </shape>
          </item>
          <item
          android:bottom="2dp"
          android:top="2dp">
          <shape android:shape="rectangle">
          <solid android:color="#d63f60" />

          </shape>
          </item>
          <item
          android:bottom="2dp"
          android:left="2dp"
          android:right="2dp"
          android:top="2dp">
          <shape android:shape="rectangle">
          <solid android:color="@android:color/white" />
          </shape>
          </item>
          </layer-list>


          add this code in your drawable(test_drawable) file and set to textview



          android:background="@drawable/test_drawable"





          share|improve this answer













          <?xml version="1.0" encoding="utf-8"?>
          <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
          <item>
          <shape android:shape="rectangle">
          <solid android:color="#76d273" />
          </shape>
          </item>
          <item android:bottom="2dp">
          <shape android:shape="rectangle">
          <solid android:color="#76d63f" />

          </shape>
          </item>
          <item
          android:bottom="2dp"
          android:top="2dp">
          <shape android:shape="rectangle">
          <solid android:color="#d63f60" />

          </shape>
          </item>
          <item
          android:bottom="2dp"
          android:left="2dp"
          android:right="2dp"
          android:top="2dp">
          <shape android:shape="rectangle">
          <solid android:color="@android:color/white" />
          </shape>
          </item>
          </layer-list>


          add this code in your drawable(test_drawable) file and set to textview



          android:background="@drawable/test_drawable"






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 28 '18 at 9:34









          Gundu BandgarGundu Bandgar

          1,45211117




          1,45211117























              0














              Check my code I have integrated the same.



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

              //for top and bottom borders
              <item
              android:left="-2dp"
              android:right="-2dp">
              <shape android:shape="rectangle">
              <stroke
              android:width="1dp"
              android:color="#fff70b" />
              <solid android:color="@android:color/transparent" />
              </shape>
              </item>

              //for left and right border
              <item
              android:bottom="-2dp"
              android:top="-2dp">
              <shape android:shape="rectangle">
              <stroke
              android:width="2dp"
              android:color="#e90c0c" />
              <solid android:color="@android:color/transparent" />
              </shape>

              </item>
              </layer-list>


              Please note that opacity should be defined when creating your color only. While writing your color in colors.xml, you can change opacity like shown in below screenshot. Either change the 255 to your chosen opacity or use the bottom bar.



              enter image description here



              Also, you need to define the solid tag for each border and apply transparent color in order to make your TextView visible.
              After applying the code in drawable, you will be able to see some preview like this :



              enter image description here



              Good Luck..!!






              share|improve this answer




























                0














                Check my code I have integrated the same.



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

                //for top and bottom borders
                <item
                android:left="-2dp"
                android:right="-2dp">
                <shape android:shape="rectangle">
                <stroke
                android:width="1dp"
                android:color="#fff70b" />
                <solid android:color="@android:color/transparent" />
                </shape>
                </item>

                //for left and right border
                <item
                android:bottom="-2dp"
                android:top="-2dp">
                <shape android:shape="rectangle">
                <stroke
                android:width="2dp"
                android:color="#e90c0c" />
                <solid android:color="@android:color/transparent" />
                </shape>

                </item>
                </layer-list>


                Please note that opacity should be defined when creating your color only. While writing your color in colors.xml, you can change opacity like shown in below screenshot. Either change the 255 to your chosen opacity or use the bottom bar.



                enter image description here



                Also, you need to define the solid tag for each border and apply transparent color in order to make your TextView visible.
                After applying the code in drawable, you will be able to see some preview like this :



                enter image description here



                Good Luck..!!






                share|improve this answer


























                  0












                  0








                  0







                  Check my code I have integrated the same.



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

                  //for top and bottom borders
                  <item
                  android:left="-2dp"
                  android:right="-2dp">
                  <shape android:shape="rectangle">
                  <stroke
                  android:width="1dp"
                  android:color="#fff70b" />
                  <solid android:color="@android:color/transparent" />
                  </shape>
                  </item>

                  //for left and right border
                  <item
                  android:bottom="-2dp"
                  android:top="-2dp">
                  <shape android:shape="rectangle">
                  <stroke
                  android:width="2dp"
                  android:color="#e90c0c" />
                  <solid android:color="@android:color/transparent" />
                  </shape>

                  </item>
                  </layer-list>


                  Please note that opacity should be defined when creating your color only. While writing your color in colors.xml, you can change opacity like shown in below screenshot. Either change the 255 to your chosen opacity or use the bottom bar.



                  enter image description here



                  Also, you need to define the solid tag for each border and apply transparent color in order to make your TextView visible.
                  After applying the code in drawable, you will be able to see some preview like this :



                  enter image description here



                  Good Luck..!!






                  share|improve this answer













                  Check my code I have integrated the same.



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

                  //for top and bottom borders
                  <item
                  android:left="-2dp"
                  android:right="-2dp">
                  <shape android:shape="rectangle">
                  <stroke
                  android:width="1dp"
                  android:color="#fff70b" />
                  <solid android:color="@android:color/transparent" />
                  </shape>
                  </item>

                  //for left and right border
                  <item
                  android:bottom="-2dp"
                  android:top="-2dp">
                  <shape android:shape="rectangle">
                  <stroke
                  android:width="2dp"
                  android:color="#e90c0c" />
                  <solid android:color="@android:color/transparent" />
                  </shape>

                  </item>
                  </layer-list>


                  Please note that opacity should be defined when creating your color only. While writing your color in colors.xml, you can change opacity like shown in below screenshot. Either change the 255 to your chosen opacity or use the bottom bar.



                  enter image description here



                  Also, you need to define the solid tag for each border and apply transparent color in order to make your TextView visible.
                  After applying the code in drawable, you will be able to see some preview like this :



                  enter image description here



                  Good Luck..!!







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 28 '18 at 9:52









                  Nir PatelNir Patel

                  164112




                  164112






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53514390%2fgive-custom-border-to-textview%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

                      Contact image not getting when fetch all contact list from iPhone by CNContact

                      count number of partitions of a set with n elements into k subsets

                      A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks