Advertisement
tuttelikz

Activity_main [v10+]

Oct 1st, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.21 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout 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.     xmlns:htext="http://schemas.android.com/apk/res-auto"
  6.     android:layout_width="match_parent"
  7.     android:layout_height="match_parent"
  8.     tools:context="com.example.iptea.audio22.MainActivity"
  9.     android:background="@drawable/loss_blur">
  10.  
  11.     <SeekBar
  12.         android:id="@+id/frequency"
  13.         android:layout_width="266dp"
  14.         android:layout_height="33dp"
  15.         android:progressDrawable="@android:color/transparent"
  16.         android:layout_marginLeft="20dp"
  17.         android:layout_marginRight="20dp"
  18.         android:layout_marginTop="152dp"
  19.         app:layout_constraintLeft_toLeftOf="parent"
  20.         app:layout_constraintRight_toRightOf="parent"
  21.         app:layout_constraintTop_toTopOf="parent"
  22.         android:layout_marginStart="20dp"
  23.         android:layout_marginEnd="20dp" />
  24.  
  25.     <TextView
  26.         android:id="@+id/textView"
  27.         android:layout_width="wrap_content"
  28.         android:layout_height="wrap_content"
  29.         android:text="Press until you stop hearing"
  30.         app:layout_constraintRight_toRightOf="parent"
  31.         app:layout_constraintLeft_toLeftOf="parent"
  32.         app:layout_constraintTop_toTopOf="parent"
  33.         android:layout_marginTop="50dp"
  34.         android:layout_marginRight="20dp"
  35.         android:layout_marginLeft="20dp"
  36.         android:textColor="#ffffff"
  37.         android:textSize="25sp"
  38.         android:layout_marginStart="20dp"
  39.         android:layout_marginEnd="20dp" />
  40.  
  41.     <TextView
  42.         android:id="@+id/textView4"
  43.         android:layout_width="wrap_content"
  44.         android:layout_height="wrap_content"
  45.         android:layout_marginLeft="20dp"
  46.         android:layout_marginRight="20dp"
  47.         android:layout_marginTop="400dp"
  48.         android:text=""
  49.         app:layout_constraintLeft_toLeftOf="parent"
  50.         app:layout_constraintRight_toRightOf="parent"
  51.         app:layout_constraintTop_toTopOf="parent"
  52.         android:textColor="#ffffff"
  53.         android:textSize="25sp"
  54.         android:fontFamily="roboto_light_italic"
  55.         android:layout_marginStart="20dp"
  56.         android:layout_marginEnd="20dp" />
  57.  
  58.     <com.skyfishjy.library.RippleBackground
  59.         xmlns:android="http://schemas.android.com/apk/res/android"
  60.         xmlns:app="http://schemas.android.com/apk/res-auto"
  61.         android:layout_width="match_parent"
  62.         android:layout_height="match_parent"
  63.         android:id="@+id/contents"
  64.         app:rb_color="#fbd88f"
  65.         app:rb_radius="50dp"
  66.         app:rb_rippleAmount="4"
  67.         app:rb_duration="3000"
  68.         app:rb_scale="6">
  69.  
  70.         <de.hdodenhof.circleimageview.CircleImageView
  71.             xmlns:app="http://schemas.android.com/apk/res-auto"
  72.             android:id="@+id/centerImage"
  73.             android:layout_centerInParent="true"
  74.             android:layout_width="100dp"
  75.             android:layout_height="100dp"
  76.             android:src="@drawable/a1"
  77.             />
  78.     </com.skyfishjy.library.RippleBackground>
  79.  
  80.  
  81. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement