Advertisement
JonesRandom

activity_main.xml

Jan 28th, 2017
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.19 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:tools="http://schemas.android.com/tools"
  4.    android:id="@+id/activity_main"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:orientation="vertical"
  8.    android:paddingBottom="@dimen/activity_vertical_margin"
  9.    android:paddingLeft="@dimen/activity_horizontal_margin"
  10.    android:paddingRight="@dimen/activity_horizontal_margin"
  11.    android:paddingTop="@dimen/activity_vertical_margin"
  12.    tools:context="com.developerrandom.belajarmenghubungkanmactivity.MainActivity">
  13.  
  14.     <Button
  15.        android:id="@+id/activity_1"
  16.        android:layout_width="match_parent"
  17.        android:layout_height="wrap_content"
  18.        android:text="KE ACTIVITY 1" />
  19.  
  20.     <Button
  21.        android:id="@+id/activity_2"
  22.        android:layout_width="match_parent"
  23.        android:layout_height="wrap_content"
  24.        android:text="KE ACTIVITY 2" />
  25.  
  26.     <Button
  27.        android:id="@+id/activity_3"
  28.        android:layout_width="match_parent"
  29.        android:layout_height="wrap_content"
  30.        android:text="KE ACTIVITY 3" />
  31.  
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement