如何在 Kotlin 中使用走馬燈文字?


本示例演示如何在 Android Kotlin 應用程式中使用走馬燈文字。

步驟 1 − 在 Android Studio 中建立一個新專案,轉到 File ⇉ New Project 並填寫所有必需資訊以建立一個新專案。

步驟 2 − 將以下程式碼新增到 res/layout/activity_main.xml 中。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:padding="16dp"
   tools:context=".MainActivity">
   <TextView
      android:id="@+id/textView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"
      android:ellipsize="marquee"
      android:fadingEdge="horizontal"
      android:marqueeRepeatLimit="marquee_forever"
      android:scrollHorizontally="true"
      android:singleLine="true"
      android:textAlignment="center"
      android:textColor="@android:color/holo_blue_dark"
      android:textSize="24sp" />
</RelativeLayout>

步驟 3 − 將以下程式碼新增到 src/MainActivity.kt 中

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.TextView
class MainActivity : AppCompatActivity() {
   override fun onCreate(savedInstanceState: Bundle?) {
      super.onCreate(savedInstanceState)
      setContentView(R.layout.activity_main)
      title = "KotlinApp"
      val text: String = "Simple application that shows how to use marquee, with a long text"
      val textView: TextView = findViewById(R.id.textView)
      textView.text = text
      textView.isSelected = true
   }
}

步驟 4 − 將以下程式碼新增到 androidManifest.xml 中

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="app.com.kotlipapp">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

嘗試執行您的應用程式。我假設您已將實際 Android 移動裝置與計算機連線。若要從 Android Studio 中執行該應用程式,請開啟其中一個專案活動檔案,然後單擊工具欄上的執行  圖示。選擇您的移動裝置作為選項,然後檢視移動裝置會顯示您的預設螢幕 -

單擊 此處 下載專案程式碼。

更新日期:20-4-2020

984 次瀏覽

開啟 職業 生涯

完成課程可獲得認證

開始學習
廣告
© . All rights reserved.