Tumgik
#dreamlevel
shorukarts · 8 months
Note
Hey Shoru!!! I'm Ruby!!! If requests are open can you draw a Dreamlevel character? (BTW your arts are lovely!!! ❤️❤️❤️)
Tumblr media
There ya go dear dis twyla Sofia I really like her design 💜💜
I'm very sorry you had to wait too long
I'm working on your other request so don worry
( thank you ❤️❤️)
58 notes · View notes
Text
Meet your new Girlfriend, I mean Princess
Tumblr media
(I forgot to colour the skirt 😭😭😭)
Base is from Pinterest.
Your buff Dreamlevel Princess Hermione!!
Bonus:
*A quote by Dream Sans*
Whatever kind of girl you have, wife will always be wife- Dream
Here's a reason why:
*after hanging out with his besties Epic and Cross, Dream returns home with Cross only to find his angry wife*
Tumblr media
(Sun's hair turning red means she's expressing hyper emotions so she's super angry)
People who need to see this:
@sofiathehooman @shaylacousintale @analexthatexists @deepestredloves @shorukarts @naebulla @broomiepen @strawberychocolate124
Dreamlevel AU belongs to me and @sofiathehooman
11 notes · View notes
shaylacousintale · 4 months
Text
Princess star!sophia fanart for an contest i think-
Tumblr media
Dreamlevel belongs to @neoruby-loves-ut-aus
4 notes · View notes
analexthatexists · 1 month
Text
Spreading word about my mutual @neoruby-loves-ut-aus' Dreamtale AU, Dreamlevel!
Okay, heads up, it’s centered around Frans content, but if you like that type of stuff, you should check it out! It’s pretty wholesome (most of the time) and they put a lot of effort into getting it to be seen by others, so doing so would be wonderful.
(My own) Synopsis:
Most of the posts follow miscellaneous adventures involving the offspring of Dream and Sun Frisk, usually being James, Hermione and Clara, as well as that of Nightmare and Moon Frisk’s, most commonly Alexander AKA Nightmare Jr. The full stories are yet to be published, but you can enjoy skits and POVs involving the cast.
Please note the content may be a bit scattered, but it’s not something the creator should be blamed for. One more thing, if you really don’t enjoy this type of content, don’t try to be some amazing hero who vanquishes evil Sans x Frisk content and anonymously harass the creator. You aren’t helping anybody; You’re just being a pest.
6 notes · View notes
broomiepen · 9 months
Note
What if you saw baby James and comparing him to the big daddy Dreamlevel! James? (Also *Felix hugs you tightly)
Tumblr media
25 notes · View notes
sofiathehooman · 1 year
Note
*somewhere in Dreamlevel AU*
James: Hey Star! Got ya a gift. *gives a bag of cookies*
Star! Sofia: Oh thanks James-
*Clara snatches the bag*
James: CLARA! THAT WAS MY STARY'S GIFT! *cries and vibrates on the floor*
Clara: Sorry big brother but this girl loves cookies too.
(There are two Dreamlevel Sofias, Star! Sofia and Twyla! Sofia)
Tumblr media Tumblr media
I actually never planned making dreamtale designs
But Dreamlevel Au sounds interesting 👀
So here you go ^^
19 notes · View notes
naebulla · 4 months
Note
This is a 2024 start request (it's okay if you don't want 😊
Draw Dreamlevel James being cannibalistic and eating a person while his sister Clara handles him.
Im havent opened the request tho but ig is fine
Tumblr media
Its a quick draw so it might be ugly😭, sorry
4 notes · View notes
redloves · 8 months
Note
Question for you Red, though you like SD Nightmare, whom do you want to date among the Dreamlevel bois?,
I don't really know but my mind said Midnight 🫶
1 note · View note
poetponyofmidgard · 4 years
Photo
Tumblr media
Hope everyone is checking the weight of their totems... because 2020? Day 7 #quarantine #pandemic #2020 #amirightoramiright #itsonlywhenwewakeupwerealisesomethingwasstrange #totem #top #spinningtop #inception #dreamlevel #dontshareyourtotem #christophernolan #2020 @christophernolan_officialpage @moviescenesandstills @movieverse @isthatmoviestillgood @fullcastandcrewpodcast @movieweb @movie_spree https://www.instagram.com/p/B-Cm8PCpE-0/?igshid=gkdb77vzydbp
0 notes
Photo
Tumblr media
inception by chris skinner
46 notes · View notes
android-nerd · 5 years
Text
RecyclerView write an application with a list of Android
RecyclerView is a new interpretation of the usual in the old versions of Android list. Compared to ListView, the new list seems to be difficult for quick implementation, but according to Google’s idea, it is better suited to the requirements of material design and allows you to use distributed architectural patterns (which many junior developers often forget).
Tumblr media
Thus, RecyclerView not only provides more modern functionality, but also encourages the developer to stick to a more efficient distributed class system. Knowing this, the transition to RecyclerView becomes a logical solution than just blindly following a fashion.
Before we proceed to the analysis of the component, you need to add a dependency to your build.gradle
dependencies {     implementation 'com.android.support:recyclerview-v7:28.0.0'   }
Do not forget to check that the versions of the imported components are the same, for example 28.0.0
The implementation of the RecyclerView consists of
1. layout with a declared list
2. layout for the list item
3. Adapter
4. Models for defining list data (optional, but strictly recommended item)
5. Initializing the list and adapter in activity
As an example, we will create a simple application with a list of goals that we want to achieve in our career in the next five years. I recommend that you always take a meaningful approach to educational projects, they may well turn out a successful application.
Add a list to the layout of our Activity, activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout    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:background="@color/cardview_dark_background"    tools:context=".MainActivity">    <android.support.v7.widget.RecyclerView        android:id="@+id/recyclerView"        android:layout_width="match_parent"        android:layout_height="match_parent" /> </android.support.constraint.ConstraintLayout>
Now we will create a model for storing list items, i.e. our goals
title string
expected date of achievement
priority number
DreamModel
package com.evan.ept.recyclerviewtestapp; public class DreamModel {    private String name;  //Name of achievement    private String date; //Achievement date (do not use the Date class to simplify)    private int level;  //Level of importance    //Class constructor is used to identify all fields of the model.    DreamModel(String name, String date, int level){        this.name = name;        this.date = date;        this.level = level;    } // Methods for getting model fields    public String getName() {        return name;    }    public String getDate() {        return date;    }    public int getLevel() {        return level;    } }
Create a layout file for the list item, based on the material design patterns, use the CardView element to display, update the gradle dependency list
dependencies {    implementation 'com.android.support:cardview-v7:28.0.0' }
and create a layout file item_layout.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    android:layout_width="match_parent"    android:padding="10dp"    android:layout_height="wrap_content">    <android.support.v7.widget.CardView        android:layout_width="match_parent"        android:layout_height="wrap_content"        app:cardCornerRadius="5dp">        <LinearLayout            android:layout_width="match_parent"            android:layout_height="match_parent"            android:padding="10dp"            android:orientation="vertical">            <TextView                android:id="@+id/dreamName"                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_gravity="center"                android:textStyle="bold"                android:textSize="16sp"                android:text="@string/template_name_main" />            <LinearLayout                android:layout_width="match_parent"                android:layout_height="match_parent"                android:weightSum="2"                android:padding="10dp"                android:orientation="horizontal">                <TextView                    android:id="@+id/dreamDate"                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"                    android:layout_weight="1"                    android:gravity="center"                    android:textColor="@android:color/holo_orange_light"                    android:text="@string/template_date_main"                    android:textSize="14sp"/>                <TextView                    android:id="@+id/dreamLevel"                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"                    android:layout_weight="1"                    android:gravity="center"                       android:textColor="@android:color/holo_orange_light"                    android:text="@string/template_impt_main"                    android:textSize="14sp"/>            </LinearLayout>        </LinearLayout>    </android.support.v7.widget.CardView> </LinearLayout>
Let’s create an adapter DreamAdapter, a class that performs the main work on filling and preparing elements for display in RecyclerView
package com.evan.ept.recyclerviewtestapp; import android.content.Context; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import android.widget.Toast; import java.util.List; public class DreamAdapter extends RecyclerView.Adapter<DreamAdapter.ViewHolder> {    private LayoutInflater inflater;    // Procurement for View which will be created through inflater    private List<DreamModel> dreamList; // List with objects of our models    private Context cntxt;    // Constants for text    private final String DATA_TEXT = "Reach to ";    private final String LEVEL_TEXT = "Importance ";    private final String LEVEL_POST_TEXT = "/5"; // Through the constructor, set the list and context of the inflater    DreamAdapter(Context cntxt, List<DreamModel> dreamList){        this.dreamList = dreamList;        this.cntxt = cntxt;        inflater = LayoutInflater.from(cntxt);    }    // Create a View object and return the ViewHolder with this parameter    @Override    public DreamAdapter.ViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) {        View view = inflater.inflate(R.layout.item_layout, viewGroup, false);        return new ViewHolder(view);    } // Fill our layout with data from the model via ViewHolder    @Override    public void onBindViewHolder(DreamAdapter.ViewHolder viewHolder, int currentItem) { // Get model object by number        DreamModel dreamModel = dreamList.get(currentItem);        // Set via TextView holder with data from the model        viewHolder.dreamName.setText(dreamModel.getName());        viewHolder.dreamDate.setText(DATA_TEXT + dreamModel.getDate());        viewHolder.dreamLevel.setText(LEVEL_TEXT + dreamModel.getLevel() + LEVEL_POST_TEXT);    } // Get the total length of the list    @Override    public int getItemCount() {        return dreamList.size();    }    // Use the ViewHolder implementation as a well-established pattern to quickly display elements    class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {        final TextView dreamName, dreamDate, dreamLevel;        ViewHolder(View view){            super(view);            view.setOnClickListener(this);            dreamName  =  view.findViewById(R.id.dreamName);            dreamDate  =  view.findViewById(R.id.dreamDate);            dreamLevel =  view.findViewById(R.id.dreamLevel);        }        @Override        public void onClick(View view) { // Display the name of the selected target            Toast.makeText(cntxt, dreamList.get(getAdapterPosition()).getName(), Toast.LENGTH_SHORT).show();        }    } }
And add the initialization of the list and the adapter to our activity MainActivity, also create the setInitialData method to add data to our list
package com.evan.ept.recyclerviewtestapp; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import java.util.ArrayList; import java.util.List; public class MainActivity extends AppCompatActivity {    List<DreamModel> dreamsList = new ArrayList<>(); // List of models    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main); // Before initializing the list, create and fill in the list        setInitialData();        RecyclerView recyclerView = findViewById(R.id.recyclerView); // Set the LayoutManager (the location of the items in the list, select a simple vertical list) recyclerView.setLayoutManager(new LinearLayoutManager(this));        //Creat adapter        DreamAdapter adapter = new DreamAdapter(this, dreamsList);        //Set the list for adapter        recyclerView.setAdapter(adapter);    }   // Fill the model with data for your taste    private void setInitialData() {        dreamsList.add(new DreamModel("Moonwalk on Mars", "2027", 99));        dreamsList.add(new DreamModel("Moonwalk on moon", "2025", 5));        dreamsList.add(new DreamModel("Be like Elon Musk", "2021", 5));        dreamsList.add(new DreamModel("Make a stratup", "end of 2019", 2));        dreamsList.add(new DreamModel("Learn RecyclerView", "2019", 5));    } }
Now make sure the list is displayed correctly.
Tumblr media
To handle clicks, we use the following code in the adapter (highlighted in bold)
class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {    final TextView dreamName, dreamDate, dreamLevel;    ViewHolder(View view){        super(view);        view.setOnClickListener(this);        dreamName  =  view.findViewById(R.id.dreamName);        dreamDate  =  view.findViewById(R.id.dreamDate);        dreamLevel =  view.findViewById(R.id.dreamLevel);    }    @Override    public void onClick(View view) {        //Example print        Toast.makeText(cntxt, dreamList.get(getAdapterPosition()).getName(), Toast.LENGTH_SHORT).show();    } }
Check if the information from the item is displayed correctly.
Tumblr media
Conclusion
Summing up, now you know how to implement the RecyclerView list and handle clicks, you also have a template for developing your application on the basis of the list, if you have any questions, you can email [email protected]
0 notes
shorukarts · 8 months
Note
Hi there Shoruk!!!!! I'm a new fan!!!! If requests are opened can you draw Dreamlevel Hermione and overprotective brother James?
Tumblr media
There you go Neo ✨
Their designs are beautiful 💓💓💓
Thank you for being here 💕💕✨
Again I'm sorry you had to wait and I hope you like it ❤️❤️❤️
24 notes · View notes
neoruby-loves-ut-aus · 6 months
Text
Happy Birthday @sofiathehooman
Here's Underlevel Elys and Dreamlevel James
Tumblr media
And a big birthday party planned by everyone of us 😊😊😊
Tumblr media
Dreamlevel belongs to me and @sofiathehooman
Underlevel belongs to @sofiathehooman and @underlevel
Elys belongs to @shayromi
James belongs to me
20 notes · View notes
analexthatexists · 2 months
Note
What if my Needledream met your Needledream?
Probably something like this;
(Red for mine, orange for yours.)
Huh. Your a me huh? …
Well, nice to meet you! I’m Sun Frisk but sometimes I go by NeedleDream but if your me I think you knew that. Call me whatever, just know IF YOU HURT OR KILL ANY INNOCENT I WILL MAKE A PERSONAL HELL FOR YOU IN MY SYSTEM.
… Hi! Name is Dream! Welcome to Dream. Tale! Hahah, your one weird version of me. Your boyfriend and child are Dream.EXE and Nathan aka Nightmare right?
(Prerecorded voice line) I won’t let. Win this one Nightmare. !
That’s real funny. But can you answer my question now? I could just read your mind and see what your thinking of… (Reading mind)
*The screams of various different voices, those familiar and those not, blow through your ears like a piercing wind. One even sounds like Nathan.
…huh.
Do you want. Play a game with me and my. Nightmare?
Sure!! Just don’t try anything or else I’ll-
*Your threat is suddenly cut off.
Y A Y ! I love having. Friends! Cmon!
I’ll probably write more about my take of NeedleDream (Pretty drastic from yours so I suppose it’s an AU of an AU almost or not even a NeedleDream) later, but I’m gonna finish drawing a DreamLevel thing before I get to that.
3 notes · View notes
naebulla · 9 months
Note
Would you prefer baby James or bug daddy Dreamlevel James?
I dunno...maybe both?
2 notes · View notes