Advertisement
Guest User

example_list_view.xml

a guest
Jul 25th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:id="@+id/linear_layout"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    android:orientation="vertical"
  9.    android:padding="16dp"
  10.    tools:context="com.ysn.iakbeginner.MainActivity">
  11.  
  12.     <ListView
  13.        android:layout_width="match_parent"
  14.        android:layout_height="match_parent"
  15.        android:id="@+id/list_view_data_activity_main"
  16.        />
  17.  
  18. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement