溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在android中實(shí)現(xiàn)一個(gè)點(diǎn)擊按鈕切換圖片功能

發(fā)布時(shí)間:2021-01-20 14:24:44 來源:億速云 閱讀:283 作者:Leah 欄目:開發(fā)技術(shù)

怎么在android中實(shí)現(xiàn)一個(gè)點(diǎn)擊按鈕切換圖片功能?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

代碼:

class MainActivity : AppCompatActivity() {

 override fun onCreate(savedInstanceState: Bundle?) {
  super.onCreate(savedInstanceState)
  setContentView(R.layout.activity_main)
  initView()
 }

 private fun initView() {
  val chooseGridFriendBtn: Button = findViewById(R.id.chooseGridFriend)
  chooseGridFriendBtn.setOnClickListener { chooseGirlFriend() }
 }
 // 選女友的方法實(shí)現(xiàn)
 private fun chooseGirlFriend() {
  val chooseGirlfriend = ChooseGirlfriend(5) // 只有5張圖
  val girlFriend = chooseGirlfriend.renderChoose()
  Toast.makeText(this, "" + girlFriend, Toast.LENGTH_SHORT).show()

  // 顯示對(duì)應(yīng)圖片
  val girlFriendImageSource = when (girlFriend){
   1 -> R.drawable._0
   2 -> R.drawable._1
   3 -> R.drawable._2
   4 -> R.drawable._3
   5 -> R.drawable._4
   else -> R.drawable.dice
  }

  // 展示選中圖片
  val girlFriendImageView: ImageView = findViewById(R.id.imageView)
  girlFriendImageView.setImageResource(girlFriendImageSource)

 }

}

/*
* 女友選擇器
* 隨機(jī)數(shù)選擇 默認(rèn)1-6
* */

class ChooseGirlfriend(private val numDice: Int = 6) {
 fun renderChoose(): Int {
  return (1..numDice).random()
 }
}
<?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"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context=".MainActivity">
 
 <ImageView
  android:id="@+id/imageView"
  android:layout_width="215dp"
  android:layout_height="150dp"
  android:layout_gravity="center"
  android:layout_marginVertical="20dp"
  android:contentDescription="@string/dice_image"
  app:srcCompat="@drawable/dice" />

 <Button
  android:id="@+id/chooseGridFriend"
  android:layout_width="237dp"
  android:layout_height="wrap_content"
  android:layout_gravity="center"
  android:text="@string/choose_a_girlfriend" />
</LinearLayout>

關(guān)于怎么在android中實(shí)現(xiàn)一個(gè)點(diǎn)擊按鈕切換圖片功能問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI