Android Studio, das Edge-to-Edge auf Android 15+ mit RelATelayout programmatisch unterstützt

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Android Studio, das Edge-to-Edge auf Android 15+ mit RelATelayout programmatisch unterstützt

by Anonymous » 20 Aug 2025, 01:07

Ich habe eine Ansicht, die vollständig in Java < /p>
codiert ist

Code: Select all

public class SurvivorLayout extends RelativeLayout {

public SurvivorLayout(Context context, final List list) {

super(context);

// The Below functions actually build the view piece by piece
this.initComponents();

this.setComponentsId();

this.setScrollViewAndHorizontalScrollViewTag();

...

}

}
Wie Sie sehen können, ist die Ansicht ohne XML oder komponieren usw.>

Top