Posts

Apraxia Therapy: Early Apraxia Therapy (Where to Begin) Part 3

I frequently receive requests for information from parents or therapists of very young children - usually between the ages of 18 and 30 months. The children have very few, if any, words. They make few sounds. They have a history of reduced or absent babbling. They have difficulty imitating and difficulty making volitional utterances. They are beginning to become aware that they are different. They want to communicate and yet struggle. Frustration is increasing on the part of both parents and children. The child may begin to act out in negative ways. What do you do? Where do you start? You have three immediate goals: Reduce frustration. Establish and increase frequency of volitional utterances. Increase number of daily speech utterances through structured practice. Early Apraxia Treatment - Reducing frustration. Read about how to address this goal in part one of my Early Apraxia Therapy (Where to Begin) series . Early Apraxia Treatment - Establishing and increasing frequenc...

Apraxia Therapy: Early Apraxia Therapy (Where to Begin) Part 2

I frequently receive requests for information from parents or therapists of very young children - usually between the ages of 18 and 30 months. The children have very few, if any, words. They make few sounds. They have a history of reduced or absent babbling. They have difficulty imitating and difficulty making volitional utterances. They are beginning to become aware that they are different. They want to communicate and yet struggle. Frustration is increasing on the part of both parents and children. The child may begin to act out in negative ways. What do you do? Where do you start? You have three immediate goals: Reduce frustration. Establish and increase frequency of volitional utterances. Increase number of daily speech utterances through structured practice. Early Apraxia Treatment - Reducing frustration. Read about how to address this goal in part one of my Early Apraxia Therapy (Where to Begin) series . Early Apraxia Treatment - Establishing and increasing frequenc...

Apraxia Therapy: Early Apraxia Therapy (Where to Begin) Part 1

I frequently receive requests for information from parents or therapists of very young children - usually between the ages of 18 and 30 months. The children have very few, if any, words. They make few sounds. They have a history of reduced or absent babbling. They have difficulty imitating and difficulty making volitional utterances. They are beginning to become aware that they are different. They want to communicate and yet struggle. Frustration is increasing on the part of both parents and children. The child may begin to act out in negative ways. What do you do? Where do you start? You have three immediate goals: Reduce frustration. Establish and increase frequency of volitional utterances. Increase number of daily speech utterances through structured practice. Early Apraxia Treatment - Reducing frustration. Both child and parents experience increasing frustration. The child has the cognition and underlying receptive and expressive language skills to want to communicate...

Changing screen with ViewFlipper and Animation

Image
Hello guys, today we are going to see how to change the screen with viewflipper and put animation in it. First of all we create the animation files. The animation files reside in the anim folder in the "res" directory. Download   in_from_left.xml <set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">     <translate         android:fromXDelta="-100%" android:toXDelta="0%"            android:fromYDelta="0%" android:toYDelta="0%"            android:duration="1400" /> </set> in_from_right.xml <set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">     <translate         android:fromXDelta="100%" android:toXDelta="0%"            android:fromYDelta="0%" a...

Creating Timer in Android

Image
Hello guys, in this tutorial we are going to see how to create a timer and to do something when the timer reaches a particular time. So lets  do it. Download Project   activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:background="#000000"     android:layout_height="match_parent" >     <TextView         android:id="@+id/timerValue"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_above="@+id/pauseButton"         android:layout_centerHorizontal="true"         android:layout_marginBotto...

Recording Sound and Saving it in Android

Image
Hey guys, in this blog we will see how to record sound in the android. The recorded sound will be saved in the "MediaRecorder" folder in your SD card. Run and test this project on the real device as it wont work on the emulator because emulators dont have mics to record. Download Project File activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:paddingBottom="@dimen/activity_vertical_margin"     android:paddingLeft="@dimen/activity_horizontal_margin"     android:paddingRight="@dimen/activity_horizontal_margin"     android:paddingTop="@dimen/activity_vertical_margin"     tools:context=".MainActivity" >     <Button         android:l...

Changing sound pitch with SoundPool Android

Image
Download activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:paddingBottom="@dimen/activity_vertical_margin"     android:paddingLeft="@dimen/activity_horizontal_margin"     android:paddingRight="@dimen/activity_horizontal_margin"     android:paddingTop="@dimen/activity_vertical_margin"     tools:context=".MainActivity"     android:orientation="vertical" >         <Button         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Low Pitch"         ...