tuttelikz

Untitled

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