Advertisement
Guest User

Untitled

a guest
Aug 10th, 2016
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.93 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent">
  5.   <LinearLayout
  6.      android:orientation="vertical"
  7.      android:layout_width="match_parent"
  8.      android:layout_height="match_parent"
  9.      android:minWidth="25px"
  10.      android:minHeight="25px">
  11.     <TextView
  12.        android:layout_width="match_parent"
  13.        android:typeface="monospace"
  14.        android:layout_height="55dp"
  15.        android:id="@+id/pokemonDetailViewName"
  16.        android:layout_marginBottom="28.0dp"
  17.        android:paddingLeft="20dp"
  18.        android:paddingRight="20dp"
  19.        android:paddingTop="20dp"
  20.        android:textSize="30dp"
  21.        android:layout_centerInParent="true" />
  22.     <ImageView
  23.        android:src="@android:drawable/ic_menu_gallery"
  24.        android:layout_width="match_parent"
  25.        android:layout_height="213.0dp"
  26.        android:id="@+id/pokemonDetailViewPicture"
  27.        android:paddingLeft="20dp"
  28.        android:padding="1dp"
  29.        android:paddingRight="20dp"
  30.        android:paddingTop="40dp"
  31.        android:layout_marginBottom="30dp" />
  32.     <TextView
  33.        android:layout_width="match_parent"
  34.        android:layout_height="40dp"
  35.        android:id="@+id/pokemonDetailViewTypeInformation"
  36.        android:paddingLeft="20dp"
  37.        android:paddingRight="20dp"
  38.        android:paddingTop="15dp"
  39.        android:textSize="20dp"
  40.        android:layout_marginBottom="0.0dp" />
  41.     <TextView
  42.        android:layout_width="match_parent"
  43.        android:layout_height="40dp"
  44.        android:id="@+id/pokemonDetailViewHeightInformation"
  45.        android:paddingLeft="20dp"
  46.        android:paddingRight="20dp"
  47.        android:paddingTop="15dp"
  48.        android:textSize="20dp"
  49.        android:layout_marginBottom="0.0dp" />
  50.     <TextView
  51.        android:layout_width="match_parent"
  52.        android:layout_height="40dp"
  53.        android:id="@+id/pokemonDetailViewWeightInformation"
  54.        android:paddingLeft="20dp"
  55.        android:paddingRight="20dp"
  56.        android:paddingTop="15dp"
  57.        android:textSize="20dp"
  58.        android:layout_marginBottom="0.0dp" />
  59.     <TextView
  60.        android:layout_width="match_parent"
  61.        android:layout_height="60dp"
  62.        android:id="@+id/pokemonDetailViewLocationInformation"
  63.        android:paddingLeft="20dp"
  64.        android:paddingRight="20dp"
  65.        android:paddingTop="15dp"
  66.        android:textSize="20dp"
  67.        android:layout_marginBottom="0.0dp" />
  68.     <TextView
  69.        android:layout_width="match_parent"
  70.        android:layout_height="50dp"
  71.        android:id="@+id/pokemonDetailViewMovesInformation"
  72.        android:paddingLeft="20dp"
  73.        android:paddingRight="20dp"
  74.        android:paddingTop="15dp"
  75.        android:textSize="20dp"
  76.        android:layout_marginBottom="0.0dp" />
  77.   </LinearLayout>
  78. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement