动态设置相对布局的布局参数

发布于 2024-12-18 00:37:52 字数 332 浏览 0 评论 0原文

我需要帮助来动态更改 xml 中已存在的布局的布局参数,其中包含一些预定义的布局宽度和布局高度值。我想在我的 java 代码中动态地赋予这些一些新值。我正在使用以下代码,但出现错误并且不知道如何继续。请帮忙

RelativeLayout layout = (RelativeLayout)findViewById(R.id.CompLayout);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(10,10);
layout.setLayoutParams(params);

请帮忙!!!!

I need help to dynamically change the layout parameters of a layout that already exists in the xml with some pre defined values for layout_width and layout_height . I want to give these some new values dynamically in my java code . i am using the following code but i get an error and don;t know how to proceed . please help

RelativeLayout layout = (RelativeLayout)findViewById(R.id.CompLayout);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(10,10);
layout.setLayoutParams(params);

Please help !!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-12-25 00:37:52

xml 定义为

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"

        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <RelativeLayout
            android:id="@+id/RelativeLayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="#ffffff"></RelativeLayout>


    </RelativeLayout>

,代码为

     RelativeLayout layout = (RelativeLayout) findViewById(R.id.RelativeLayout);
            RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(200, 50);
            layout.setLayoutParams(params);

xml is define as

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"

        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <RelativeLayout
            android:id="@+id/RelativeLayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="#ffffff"></RelativeLayout>


    </RelativeLayout>

and code is

     RelativeLayout layout = (RelativeLayout) findViewById(R.id.RelativeLayout);
            RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(200, 50);
            layout.setLayoutParams(params);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文