12345678910111213141516171819202122232425262728293031323334353637 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/background"
- android:orientation="vertical"
- tools:context="app.mar.activities.ResourceListActivity">
- <!-- The primary full-screen view. This can be replaced with whatever view
- is needed to present your content, e.g. VideoView, SurfaceView,
- TextureView, etc. -->
- <!-- This FrameLayout insets its children based on system windows using
- android:fitsSystemWindows. -->
- <Button
- android:layout_width="match_parent"
- android:layout_height="70dp"
- android:text="Inventaire"
- android:id="@+id/button5"
- android:layout_gravity="center_horizontal"
- android:background="@drawable/title"
- android:textColor="@color/dull_4"
- android:textStyle="bold"
- android:textSize="30dp" />
- <ListView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/list_layout"
- android:scrollingCache="true"
- android:choiceMode="singleChoice"
- android:fastScrollEnabled="true"
- android:fastScrollAlwaysVisible="true"
- android:longClickable="false" />
- </LinearLayout>
|