Android - 在特定索引处添加带有布局参数的子视图(在代码中)

发布于 2024-12-27 18:58:22 字数 173 浏览 2 评论 0原文

我可能遗漏了一些东西,但我找不到一种方法来将子视图添加到具有特定布局参数的指定索引处的视图。有 addView(View v, LayoutParams lp)addView(View v, int index) - 但我找不到指定两者的方法。

我缺少什么?

I may be missing something, but I can't find a way to add a subview to a view at a specified index with specific layout params. There's addView(View v, LayoutParams lp) and there's addView(View v, int index) - but I can't find a way to specify both.

What am I missing?

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

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

发布评论

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

评论(2

合久必婚 2025-01-03 18:58:22

为什么,有一个方法同时具有两者: addView(View child, int index, ViewGroup.LayoutParams params): 此处

Why, there's a method with both: addView(View child, int index, ViewGroup.LayoutParams params): Here.

无边思念无边月 2025-01-03 18:58:22

这是一个例子。我用它在任何视图上显示进度指示器。

final ViewGroup rootFrameLayout = (ViewGroup) activity.getWindow().peekDecorView();
LayoutInflater li = LayoutInflater.from(activity);
progressView = li.inflate(R.layout.progressindicator, null);
rootFrameLayout.addView(progressView);

这是一个示例布局文件(id 是 R.layout.progressindicator)

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

<ProgressBar
    android:id="@+id/progressBar1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="3dp"
    android:layout_toRightOf="@+id/progressBar1"
    android:maxLines="3"
    android:lines="3"
    android:background="#88000000"
    android:textColor="#ffffff"
    android:text="@string/waitingForServer" />

如果您还想动态更改布局,则可以调用布局中元素的方法。像这样:

TextView textView = (TextView) progressView.findViewById(R.id.textView1);
textView.setMaxLines(lines);
textView.setLines(lines);
textView.setVisibility(View.VISIBLE);

Here is an example. I use it to show a progress indicator on any view.

final ViewGroup rootFrameLayout = (ViewGroup) activity.getWindow().peekDecorView();
LayoutInflater li = LayoutInflater.from(activity);
progressView = li.inflate(R.layout.progressindicator, null);
rootFrameLayout.addView(progressView);

Here is a sample layout file (id is R.layout.progressindicator)

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

<ProgressBar
    android:id="@+id/progressBar1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="3dp"
    android:layout_toRightOf="@+id/progressBar1"
    android:maxLines="3"
    android:lines="3"
    android:background="#88000000"
    android:textColor="#ffffff"
    android:text="@string/waitingForServer" />

Just in case you want to change the layout also dynamically then you can call the methods of the elements in the layout. Like this:

TextView textView = (TextView) progressView.findViewById(R.id.textView1);
textView.setMaxLines(lines);
textView.setLines(lines);
textView.setVisibility(View.VISIBLE);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文