Advertisement
Baru_Berbagi

activity_main.xml

Oct 26th, 2021
1,192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.58 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:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    android:padding="11dp"
  8.    tools:context=".MainActivity">
  9.  
  10. <TextView
  11.    android:layout_width="match_parent"
  12.    android:layout_height="wrap_content"
  13.    android:text="Nomor Telepon Permanen"
  14.    android:textSize="30dp"
  15.    android:gravity="center"
  16.    android:layout_marginBottom="11dp"
  17.    android:textColor="#FFFFFF"
  18.    android:background="#FD304D"/>
  19.  
  20.    <Button
  21.       android:id="@+id/btnPermanenCall"
  22.       android:layout_width="match_parent"
  23.       android:layout_height="wrap_content"
  24.       android:text="Call" />
  25.  
  26.  
  27.  
  28.    <TextView
  29.       android:layout_width="match_parent"
  30.       android:layout_height="wrap_content"
  31.       android:text="Nomor Telepon Manual"
  32.       android:textSize="30dp"
  33.       android:gravity="center"
  34.       android:layout_marginBottom="11dp"
  35.       android:layout_marginTop="75dp"
  36.       android:textColor="#FFFFFF"
  37.       android:background="#886343"/>
  38.  
  39.    <EditText
  40.       android:id="@+id/edtManual"
  41.       android:layout_width="match_parent"
  42.       android:layout_height="wrap_content"
  43.       android:hint="masukkan Nomor"
  44.       android:inputType="number"/>
  45.  
  46.    <Button
  47.       android:id="@+id/btnManualCall"
  48.       android:layout_width="match_parent"
  49.       android:layout_height="wrap_content"
  50.       android:text="Call"/>
  51.  
  52. </LinearLayout>
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement