2019年6月23日 星期日

Android-Android 套件升級導致 UI 元件失效

因近期升級至 Android X
導致部分原有的 UI 元件失效
在此紀錄有異動的項目
官方說明列表有很清楚的對照表
以下為之前遇到的在此紀錄
import android.support.v4.app.Fragment;

To

import androidx.fragment.app.Fragment;

---------------------------------------

import androidx.annotation.Nullable; 

To 

import androidx.annotation.Nullable;
---------------------------------------

import android.support.v7.app.AppCompatActivity;

To

import androidx.appcompat.app.AppCompatActivity; 
---------------------------------------
androidx.constraintlayout.ConstraintLayout

To

androidx.constraintlayout.widget.ConstraintLayout
---------------------------------------
android.support.constraint.ConstraintLayout

To

android.coordinatorlayout.widget.ConstraintLayout
---------------------------------------
android.support.v7.widget.CardView
To
androidx.cardview.widget.CardView

參考資料:Migrating to AndroidX

2019年6月2日 星期日

Android-新 Google Play icon design specifications

在 Google 發佈新的 App 最重要的就是讓人第一眼能讓人識別的 ICon 囉
為了能夠統一規範
Google 近期發布最新的規範請開發者務必遵照
因為現在發布的圖片皆會被 Google 動態修改囉

因 Google 有發布最新網格佈局
希望各個美術創作者依照此佈局盡情的創作

基本規範如下:

  • Final size: 512px x 512px
  • Format: 32-bit PNG
  • Color space: sRGB
  • Max file size: 1024KB
  • Shape: Full square – Google Play dynamically handles masking. Radius will be equivalent to 20% of icon size.
  • Shadow: None – Google Play dynamically handles shadows. See 'Shadows' section below on including shadows within your artwork.



















參考資料 : Google Play icon design specifications