Computer >> Máy Tính >  >> Lập trình >> Android

Làm cách nào để thêm một TextView vào LinearLayout động trong Android bằng Kotlin?

Ví dụ này trình bày cách thêm động một TextView vào LinearLayout trong Android bằng Kotlin.

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.

    

Bước 3 - Thêm mã sau vào src / MainActivity.kt

 import android.graphics.Colorimport android.os.Bundleimport android.widget.LinearLayoutimport android.widget.TextViewimport androidx.appcompat.app.AppCompatActivityclass MainActivity:AppCompatActivity () {ghi đè lên fun onCreate (saveInstanceState:Bundle?) (saveInstanceState) setContentView (R.layout.activity_main) title ="KotlinAp" val linearLayout:LinearLayout =findViewById (R.id.linearLayout) val textView =TextView (this) textView.text ="Tôi được thêm động vào chế độ xem" val params =LinearLayout.LayoutParams (LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT) textView.layoutParams =params textView.textSize =24F textView.setTextColor (Color.RED) linearLayout.add} 

Bước 4 - Thêm mã sau vào androidManifest.xml

   <ứng dụng 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">         

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ studio android, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy Làm cách nào để thêm một TextView vào LinearLayout động trong Android bằng Kotlin? từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn

Làm cách nào để thêm một TextView vào LinearLayout động trong Android bằng Kotlin?