euphony-io / sound-helper

Euphony Demo for patients and assistants in case of an emergency.
Apache License 2.0
5 stars 4 forks source link

MVP model layout design #5

Closed judemin closed 3 years ago

judemin commented 3 years ago

MVP 모델의 각 액티비티에 대한 레이아웃 디자인

버튼이나 메뉴바 등의 UI 디자인은 따로 Issue를 생성해서 협업

Main activity

슬라이드2

Info input activity

슬라이드3

Listener activity

슬라이드4

Transmitter activity

슬라이드5

Color palette

https://colorhunt.co/palette/fcd1d1ece2e1d3e0dcaee1e1

kmsaidev commented 3 years ago

https://colorhunt.co/palette/fcd1d1ece2e1d3e0dcaee1e1

This is the color format we discussed earlier.

kmsaidev commented 3 years ago

https://colorhunt.co/palette/fcd1d1ece2e1d3e0dcaee1e1

This is the color format we discussed earlier.

It would be good to use the pink color at the top of this format for the title part of the top application.

kmsaidev commented 3 years ago

https://colorhunt.co/palette/fcd1d1ece2e1d3e0dcaee1e1 This is the color format we discussed earlier.

It would be good to use the pink color at the top of this format for the title part of the top application.

Like this! Screenshot_1629097256

kuro11pow2 commented 3 years ago

https://colorhunt.co/palette/fcd1d1ece2e1d3e0dcaee1e1 This is the color format we discussed earlier.

It would be good to use the pink color at the top of this format for the title part of the top application.

Like this!

WOW I like that!

chrome_6oq1GHxvFZ

How about adding these four colors to our resources?

res/values/colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
   <color name="pastel_pink">#FCD1D1</color>
   <color name="light_pastel_pink">#ECE2E1</color>
   <color name="light_mint">#D3E0DC</color>
   <color name="light_turquoise">#AEE1E1</color>
</resources>
kmsaidev commented 3 years ago

https://colorhunt.co/palette/fcd1d1ece2e1d3e0dcaee1e1

This is the color format we discussed earlier.

It would be good to use the pink color at the top of this format for the title part of the top application.

Like this!

WOW I like that!

chrome_6oq1GHxvFZ

How about adding this four colors to our resources?

res/values/colors.xml


<?xml version="1.0" encoding="utf-8"?>

<resources>

   <color name="pastel_pink">#FCD1D1</color>

   <color name="light_pastel_pink">#ECE2E1</color>

   <color name="light_mint">#D3E0DC</color>

   <color name="light_turquoise">#AEE1E1</color>

</resources>

All right. I think it would be good to use it properly.

judemin commented 3 years ago

How do you think about using only two colors in the palette for accent and use white and black (gray) for buttons and TextView?

kmsaidev commented 3 years ago

How do you think about using only two colors in the palette for accent and use white and black (gray) for buttons and TextView?

Good. I think it looked a bit messy with the color template we used at first. I think something simple would be good.

kmsaidev commented 3 years ago

I just changed the color. Are you all right?

eunzinn commented 3 years ago

I made it like this for now, but I think it's okay to use these two colors(pink, grey).

kuro11pow2 commented 3 years ago

I made it like this for now, but I think it's okay to use these two colors(pink, grey).

This is what I wanted.

kuro11pow2 commented 3 years ago

Screenshot_2021-08-18-00-01-54-228_com eutophia sound_helper

How about this color? I tried the color of blood that symbolizes saving lives. Like the Red Cross.

kmsaidev commented 3 years ago

Screenshot_2021-08-18-00-01-54-228_com eutophia sound_helper

How about this color? I tried the color of blood that symbolizes saving lives. Like the Red Cross.

It looks good. Let's talk again at the meeting on Thursday!

judemin commented 3 years ago

How about this color? I tried the color of blood that symbolizes saving lives. Like the Red Cross.

Can you send me hex codes of red and gray color?

kuro11pow2 commented 3 years ago

How about this color? I tried the color of blood that symbolizes saving lives. Like the Red Cross.

Can you send me hex codes of red and gray color?

Here are the colors! bloody_red and light_bloody_red.

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="purple_200">#FFBB86FC</color>
    <color name="purple_500">#FF6200EE</color>
    <color name="purple_700">#FF3700B3</color>
    <color name="teal_200">#FF03DAC5</color>
    <color name="teal_700">#FF018786</color>
    <color name="black">#FF000000</color>
    <color name="white">#FFFFFFFF</color>

    <color name="bloody_red">#CB4335</color>
    <color name="light_bloody_red">#F1948A</color>
</resources>