前提・実現したいこと
xmlを修正せずにandroid:layout_marginBottomを設定したいのですが上手くいきません
発生している問題
webview.layout(0,0,0,20)を追加してもBottomが0のままになります
該当のソースコード
Kotlin
1Kotlin側 2override fun onViewCreated(view: View, savedInstanceState: Bundle?) { 3 super.onViewCreated(view, savedInstanceState) 4 webview.layout(0,0,0,20) 5 6xml側 7<WebView 8 android:id="@+id/webview" 9 xmlns:android="http://schemas.android.com/apk/res/android" 10 xmlns:tools="http://schemas.android.com/tools" 11 android:layout_width="match_parent" 12 android:layout_height="match_parent" 13 tools:context=".presentation.common.view.WebViewFragment"/>
お力添えいただけないでしょうか
よろしくお願いいたします
あなたの回答
tips
プレビュー