我正在开发Android v2.2应用程序。

我有一个碎片。在我的片段类的onCreateView(…)回调中,我将一个布局膨胀到片段,如下所示:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.login, null);
        
    return view;
}

上面的膨胀布局文件是(login.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Username" />

    
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Username" />

</LinearLayout>

我想设置一个paddingTop到上面的<LinearLayout>元素,我想在Java代码中做,而不是在xml中做。

如何设置paddingTop <LinearLayout>在我的片段Java类代码??


当前回答

使用下面的方法动态设置填充

setPadding(int left, int top, int right, int bottom)

例子:

view.setPadding(2,2,2,2);

其他回答

使用下面的方法动态设置填充

setPadding(int left, int top, int right, int bottom)

例子:

view.setPadding(2,2,2,2);

与手动计算相比,使用TypedValue是一种更清晰的转换为像素的方式:

float paddingDp = 10f;
// Convert to pixels
int paddingPx = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, paddingDp, context.getResources().getDisplayMetrics());
view.setPadding(paddingPx, paddingPx, paddingPx, paddingPx);

本质上,TypedValue。applyDimension根据当前设备的显示属性将所需的填充适当地转换为像素。

更多信息见:TypedValue。applyDimension文档。

芬兰湾的科特林;扩展函数

fun Float.px(m: DisplayMetrics!): Int
    get() = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, this, m).toInt()

...
val pad = 10.0f.px
    binding.appBarMain.toolbar.setOnApplyWindowInsetsListener { _, insets ->
        val statusBarSize: Int =
            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.R) {
                insets.getInsets(WindowInsets.Type.systemBars()).top
            } else {
                insets.systemWindowInsetTop
            }
        binding.appBarMain.appBarLayout.setPadding(0, statusBarSize, 0, 0)
        return@setOnApplyWindowInsetsListener insets
    }

使用Kotlin和android-ktx库,您可以简单地做到

view.updatePadding(top = 42)

点击这里查看文档

当以编程方式填充时,通过将像素转换为Dp转换为密度相关的值。