iT邦幫忙

2021 iThome 鐵人賽

DAY 19
0
自我挑戰組

Android 初新者系列 第 19

Day19 - ImageView(一)

  • 分享至 

  • xImage
  •  

如果一個APP全部都只有文字
是不是看了會覺得很單調
這時候如果加了一個圖片
畫面是不是看幾來就豐富很多了呢
今天就來學習ImageView這個元件
圖片的圖形資源有:
1.Android本身內建的圖案
2.非Android內建圖形資源
非Android內建圖形資源會比較麻煩一點
所以我會分兩天寫
先來學1.Android本身內建的圖案

開始

ImageView元件設計會比較難一點

Android本身內建的圖案

activity_main.xml
如果是直接在Design頁拉ImageView元件
這裡要注意一定要選一張圖片按OK
如果你點選Cancel,你拉的ImageView元件會消失不見
若是在Code頁設計就不會有這問題

  • 點選OK
    https://ithelp.ithome.com.tw/upload/images/20210926/201417698NQv35cGQg.png
    https://ithelp.ithome.com.tw/upload/images/20210926/201417693EejUyuzj4.png
    -點選Cancel
    https://ithelp.ithome.com.tw/upload/images/20210926/20141769kcZdQNmNif.png
    https://ithelp.ithome.com.tw/upload/images/20210926/20141769l9amPsDNBt.png

若在Code設計
要加app:srcCompat="@android:drawable/btn_star_big_on"
如果習慣在Code頁設計的話,那就要記住@android:drawable/btn_star_big_on這個內建圖案的路徑

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">


    <ImageView
        android:id="@+id/imageView"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_marginTop="80dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@android:drawable/btn_star_big_on" />
</androidx.constraintlayout.widget.ConstraintLayout>

執行結果:
https://ithelp.ithome.com.tw/upload/images/20210926/20141769FqTbyCYYeX.png


今天只有純粹拉一個ImageView出來而已
明天來學如何透過程式碼從原本的圖片改為其他圖片
那我們明天見
Bye~~


上一篇
Day18 - CheckBox
下一篇
Day20 - ImageView(二)
系列文
Android 初新者30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言