前提・実現したいこと
android-studioとkotlinを利用してアプリの開発をしています。
タイトルのとおり、xmlファイルで設定したlayout_weightの値をkotlinファイルから変更したいです。
他のプロパティの値は変更できるのですが、同様の方法でlayout_weightで変更する事ができません。
下記コードの①、②の方法ではエラーとなってしまいます。
方法について、ご存知の方おりましたらご教授いただけないでしょうか?
該当のソースコード
下記のコード(kotlin)では変更できません
xml
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:tools="http://schemas.android.com/tools" 5 xmlns:app="http://schemas.android.com/apk/res-auto" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 android:orientation="vertical" 9 tools:context=".MainActivity" 10 android:weightSum="1" 11> 12 13 <LinearLayout 14 android:id="@+id/first" 15 android:layout_width="match_parent" 16 android:layout_height="match_parent" 17 android:layout_weight="0.5" 18 android:background="@color/colorPrimary" 19 android:orientation="horizontal"> 20 </LinearLayout> 21 <LinearLayout 22 android:id="@+id/second" 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:layout_weight="0.5" 26 android:background="@color/colorAccent" 27 android:orientation="horizontal"> 28 </LinearLayout> 29 30</LinearLayout>
kotlin
1package com.sample.weighttest 2 3import android.support.v7.app.AppCompatActivity 4import android.os.Bundle 5import android.widget.LinearLayout 6 7class MainActivity : AppCompatActivity() { 8 9 override fun onCreate(savedInstanceState: Bundle?) { 10 super.onCreate(savedInstanceState) 11 setContentView(R.layout.activity_main) 12 13 val first = findViewById<LinearLayout>(R.id.first) 14 15 //最初のLinearLayoutのlayout_weightの値を変更する 16 first.weight = 1 //① エラーとなる 17 first.layoutWeight = 1 //② エラーとなる 18 } 19}
補足情報(FW/ツールのバージョンなど)
Android Studio : 3.3.2
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。