Distance between textview in listview android -
i have listview , textview in it. have selector image. how make distance between textviews bigger
textview
<textview xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/text" android:layout_width="match_parent" android:textsize="@dimen/menu_item_size" android:layout_gravity="center_horizontal" android:layout_height="wrap_content" android:shadowradius="5" android:gravity="right" android:layout_marginright="10dp" android:textcolor="@color/menu_color" android:shadowcolor="@color/menu_glow" android:shadowdy="3" android:shadowdx="3" /> listview <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/menu1"> <listview android:id="@+id/listview_menu" android:layout_width="match_parent" android:layout_height="244dp" android:layout_margintop="33dp" android:padding="2dp" android:divider="@drawable/divider"> </listview>
Comments
Post a Comment