Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to put a border around my listview that is a few pixes wide. I want it to to go around the entire listview piece. How can I do this? thanks

share|improve this question

3 Answers

up vote 8 down vote accepted

For this First u take the LinearLayout and assigh that linear layout with some color and take a list view in that linear layout and set the android:layout_margin="10dp" property for listview .that means 4 side 10 dip space will be leaved .this shown as border of the listview

share|improve this answer
1  
android:margin does not appear to exist.... – Androider Feb 21 '11 at 12:20
see android:Layout margin – Praveena_Pinki Feb 21 '11 at 12:23
Ok. I see it. Its android:layout_margin. works, thanks. – Androider Feb 21 '11 at 12:23

The other way to do it is to create a border resource that can then be reused, and it also means you won't need to create extra layout to implement it.

  1. create a drawable resource

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
       <!-- use this for transparent -->
       <!-- <solid android:color="#00000000" /> -->
       <!-- use this for a background colour -->
       <solid android:color="#FFF" />
       <stroke android:width="2dip" android:color="#FF0000" />
    </shape>
    
  2. then set it as the listview background

    <ListView
        android:id="@id/android:list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/border_ui" />
    
share|improve this answer
thanks for adding this info.. – Shaista Naaz Apr 16 '12 at 6:50
hi! thanks, helped me. If I put android:layout_marginLeft="20dp" in the listview, the right borderline disappears. Why is that? – user1809923 Jan 10 at 19:41
@user1809923 Would need more information to tell that, probably best to create your own question! My guess is that you are declaring it match the parent width, and then pushing the right 20dp off the screen. – Ben Neill Jan 11 at 1:24

you may also do border like as

<ListView
    android:id="@id/android:list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp"
    android:background="@drawable/border_ui" />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.