Mohit
Mohit

Reputation: 11324

Width in Android

can any view have its layout width in % like

android:layout_width="50%"

as we provide in ASP.net

width="50%" height="50%"

similarly in html

height="50%" 

Upvotes: 0

Views: 269

Answers (1)

WarrenFaith
WarrenFaith

Reputation: 57702

No (partly), what you are looking for is called layout_weight. With that you can perform percentage-like behavior

Upvotes: 2

Related Questions