使用Kotlin将运行时边距设置为任何视图

时间:2017-07-31 09:06:51

标签: android button kotlin

我是Kotlin的大人物。我对这种语言并不太熟悉。我正在制作一个例子并使用代码。我只是想将运行时边距设置为任何视图。我也试图谷歌它但没有得到任何适合这项任务的解决方案。 更多代码详情请阅读以下内容。

要求

将运行时边距设置为任何视图。

描述

我已经获取了一个包含在Button上的xml文件,我想将运行时边距设置为此按钮。

代码

我也尝试下面的东西,但它没有用。

class MainActivity : AppCompatActivity() {


//private lateinit var btnClickMe: Button
//var btnClickMe=Button();

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        //For setting runtime text to any view.
        btnClickMe.text = "Chirag"

        //For getting runtime text to any view
        var str: String = btnClickMe.text as String;

        //For setting runtimer drawable
       btnClickMe.background=ContextCompat.getDrawable(this,R.drawable.abc_ab_share_pack_mtrl_alpha)//this.getDrawable(R.drawable.abc_ab_share_pack_mtrl_alpha)


        /*
        //For Setting Runtime Margine to any view.
        var param:GridLayout.LayoutParams
        param.setMargins(10,10,10,10);

        btnClickMe.left=10;
        btnClickMe.right=10;
        btnClickMe.top=10;
        btnClickMe.bottom=10;
        */

        // Set OnClick Listener.
        btnClickMe.setOnClickListener {
            Toast.makeText(this,str,5000).show();
        }

    }

}

activity_main.xml中

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
tools:context="chirag.iblazing.com.stackoverflowapp.MainActivity"
android:layout_height="match_parent">

<Button
    android:id="@+id/btnClickMe"
    android:text="Click Me"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

我希望你们都明白我的问题。如果有人解决这个问题,请帮助我。如果你想了解更多有关我问题的信息,请告诉我。

先谢谢。

3 个答案:

答案 0 :(得分:18)

您需要从按钮获取layoutParams对象并将其投放到LinearLayout.LayoutParams,因为btnClickMe的父级是LinearLayout,并将边距设置为您想要的任何内容

检查以下代码:

val param = btnClickMe.layoutParams as LinearLayout.LayoutParams
param.setMargins(10,10,10,10)
btnClickMe.layoutParams = param // Tested!! - You need this line for the params to be applied.

希望它有所帮助。

答案 1 :(得分:10)

这就是我想在Kotlin做的事情 -

fun View.margin(left: Float? = null, top: Float? = null, right: Float? = null, bottom: Float? = null) {
    layoutParams<ViewGroup.MarginLayoutParams> {
        left?.run { leftMargin = dpToPx(this) }
        top?.run { topMargin = dpToPx(this) }
        right?.run { rightMargin = dpToPx(this) }
        bottom?.run { bottomMargin = dpToPx(this) }
    }
}

inline fun <reified T : ViewGroup.LayoutParams> View.layoutParams(block: T.() -> Unit) {
    if (layoutParams is T) block(layoutParams as T)
}

fun View.dpToPx(dp: Float): Int = context.dpToPx(dp)
fun Context.dpToPx(dp: Float): Int = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, resources.displayMetrics).toInt()

现在我们只需要在像

这样的视图上调用它
textView.margin(left = 16F)

答案 2 :(得分:0)

这是一个有用的 Kotlin 扩展方法:

fun View.setMargins(
    left: Int = this.marginLeft,
    top: Int = this.marginTop,
    right: Int = this.marginRight,
    bottom: Int = this.marginBottom,
) {
    layoutParams = (layoutParams as ViewGroup.MarginLayoutParams).apply {
        setMargins(left, top, right, bottom)
    }
}

像这样使用它:

myView.setMargins(
   top = someOtherView.height
   bottom = anotherView.height
)

编辑:解决方案类似于 the answer from Hitesh,但我使用的是(原始)ViewGroup.setMargins(以像素为单位)。当然,您可以根据这些示例制作自己的 setMarginsDp 变体,或者在调用我的实现之前使用 Hitesh 的 dpToPx 扩展。您选择哪种解决方案取决于您自己的口味。

另请注意,我的解决方案(重新)设置了所有边距,尽管在大多数情况下这不会成为问题。