Как я могу получить ширину ImageButton, которая установлена в XML в 0 и имеет размер от веса?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:orientation="horizontal">
<ImageButton
android:id="@+id/fluido"
android:layout_width="0dp"
android:layout_height="70dp"
android:layout_marginEnd="10dp"
android:layout_marginRight="10dp"
android:tint="@color/icon"
android:layout_weight="0.33"
app:srcCompat="@drawable/fluido" />
<......../>
</LinearLayout>
Как получить это значение, которое было автоматически установлено с помощью weight ?
Как установлено в XML как 0 , если я сделаю: imageButton.getWidth();
или imageButton.getLayoutParams().width();
оба возвращают 0 как в XML.