gpt4 book ai didi

android - 动态更改 View 宽度不起作用

转载 作者:行者123 更新时间:2023-11-29 19:20:54 25 4
gpt4 key购买 nike

我将主要布局分为 4 个部分。第一部分是一个 ImageView ,它有 layout_weight="2" 和两个线性布局,每个布局都有 layout_weight="1"。在每个线性布局中,都有 2 个水平方向的 CardView,我想以相等的宽度和高度显示它们。 enter image description here

我像下面这样更改每个 CardView 的宽度:

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.home_page);

CardView cardView1 = (CardView) findViewById(R.id.cardView1);
ViewGroup.LayoutParams params = cardView1.getLayoutParams();

params.width = params.height; // params.height == -1 ???
cardView1.setLayoutParams(params);
}

你知道问题出在哪里吗?谢谢。

Xml 文件是:

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

<ImageView
android:id="@+id/userImage"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="1"
android:weightSum="2">

<android.support.v7.widget.CardView
android:id="@+id/cardView1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
app:cardCornerRadius="4dp"
android:elevation="5dp"
app:cardElevation="10dp"
android:paddingBottom="15dp"
android:paddingEnd="15dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingStart="15dp"
android:paddingTop="15dp"
android:layout_margin="15dp"
app:cardBackgroundColor="?attr/colorButtonNormal">

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"/>
</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardView2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:elevation="5dp"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="10dp"
android:paddingBottom="15dp"
android:paddingEnd="15dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingStart="15dp"
android:paddingTop="15dp"
android:layout_margin="15dp"
card_view:cardBackgroundColor="?attr/colorButtonNormal">

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2"/>
</android.support.v7.widget.CardView>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="1"
android:weightSum="2">

<android.support.v7.widget.CardView
android:id="@+id/cardView3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:elevation="5dp"
app:cardCornerRadius="4dp"
android:background="@color/cardview_dark_background"
app:cardBackgroundColor="?attr/colorButtonNormal"
app:cardElevation="10dp"
android:paddingBottom="15dp"
android:paddingEnd="15dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingStart="15dp"
android:paddingTop="15dp"
android:layout_margin="15dp">

<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3"/>
</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardView4"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:elevation="5dp"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="10dp"
android:paddingBottom="15dp"
android:paddingEnd="15dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingStart="15dp"
android:paddingTop="15dp"
android:layout_margin="15dp"
card_view:cardBackgroundColor="?attr/colorButtonNormal">

<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="4"/>
</android.support.v7.widget.CardView>
</LinearLayout>

最佳答案

在屏幕上绘制之前,您会提前获得 View 高度。更好的方法是首先使用这样的观察器获取屏幕宽度

view.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
view.getWidth(); //width is ready here
// assign your image view the same height
// divide this width by 2 and assign same height width to your cars views
}
});

您可以关注this线程以获取更多详细信息

关于android - 动态更改 View 宽度不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42508984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com