Merge branch 'main' of ssh://gitlab.fdmci.hva.nl/propedeuse-hbo-ict/onderwijs/2023-2024/out-a-se-ti/blok-4/muupooviixee66
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
# VideoView
|
||||
|
||||
We wanted to show the different exercises in a video that anybody could replicate. For this we didn't want to implement a youtube function we wanted to have our own videos so that we don't rely on youtube. Ti start we need an emoty activity file you can create one in the android studio IDE. Then you need to head to the XML file you just created and the go to widgets and the add the VideoView element
|
||||
We wanted to show the various exercises in a video that everyone could replicate. We did not want to implement a YouTube function because we wanted to have our own videos rather than relying on YouTube. To begin, we need an empty activity file, which you can create using the Android Studio IDE. Then, navigate to the XML file you just created and the go-to widgets, and add the VideoView element.
|
||||
|
||||

|
||||
|
||||
If you drag that in to your activity you can edit the layout of it but it will not function directly. To Let it play videos we need to write a java code. First start by coding what you want to view.
|
||||
If you drag that into your activity, you can change the layout, but it will not function directly. To make it play videos, we need to write some Java code first.
|
||||
```java
|
||||
VideoView videoView = findViewById(R.id.videoView);
|
||||
videoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.videofile));
|
||||
@@ -20,4 +20,4 @@ replace the video file with the name of the video. Then you need to code the med
|
||||
}
|
||||
});`
|
||||
```
|
||||
Since we have short videos we will have a auto replay function if you want it can go to a completion screen after the video ended.
|
||||
Because we have short videos, we will have an auto replay function.
|
@@ -24,4 +24,39 @@ Welke ethische dilemma's kunnen er vormen bij het gebruik van robotica in de oud
|
||||
|
||||
**H. BEGRIPSOMSCHRIJVING – De volgende begrippen uit mijn vraagstelling definieer ik als:**
|
||||
|
||||
**I. VRAAGSTELLING 2 - De deelvragen van mijn onderzoek zijn:**
|
||||
**I. VRAAGSTELLING 2 - De deelvragen van mijn onderzoek zijn:**
|
||||
|
||||
|
||||
# Deelvragen
|
||||
|
||||
|
||||
Wat is de impact van robots op de emotionele en sociale welzijn van ouderen?
|
||||
|
||||
Kan het gebruik van robots in de ouderezorg ervoor zorgen dat de zorg minder menselijk wordt?
|
||||
|
||||
Hoe worden de veiligheid en persoonlijke gegevens van ouderen Beschermd bij het gebruik van robots?
|
||||
|
||||
# Bronnen
|
||||
Design issues for assistive robotics for the elderly
|
||||
https://www.sciencedirect.com/science/article/abs/pii/S1474034605000923
|
||||
|
|
||||
Socially Assistive Robots in Elderly Care: A Systematic Review into Effects and Effectiveness
|
||||
https://www.sciencedirect.com/science/article/abs/pii/S1525861010003476
|
||||
|
||||
Older adults’ experiences with and perceptions of the use of socially assistive robots in aged care: A systematic review of quantitative evidence
|
||||
https://www.sciencedirect.com/science/article/abs/pii/S0167494321000613
|
||||
|
||||
The ethical issues of social assistive robotics: A critical literature review
|
||||
https://www.sciencedirect.com/science/article/pii/S0160791X21002013
|
||||
|
||||
Enabling Security Services in Socially Assistive Robot Scenarios for Healthcare Applications
|
||||
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8541011/
|
||||
|
||||
The concept of social dignity as a yardstick to delimit ethical use of robotic assistance in the care of older persons
|
||||
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8614079/
|
||||
|
||||
Socially facilitative robots for older adults to alleviate social isolation: A participatory design workshop approach in the US and Japan
|
||||
https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2022.904019/full
|
||||
|
||||
Ethical Design and Use of Robotic Care of the Elderly
|
||||
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8936033/
|
Reference in New Issue
Block a user