ู ุฑุญุจูุง ุจูู ูู ููุงุฉ '๐๐ผ๐๐๐๐' ุนูู ุชุทุจูู ุชููุฌุฑุงู ! ูุฐู ุงูููุงุฉ ู ุชุฎุตุตุฉ ูู ุตูุน ุจุฑุงู ุฌ ุงูุฑุงุช ููุทุ ูุชูุฏู ุดุฑูุญุงุช ู ูุตูุฉ ุญูู ููููุฉ ุตูุน ุงูุฑุงุช ู ู ุงูุตูุฑ. ุจุงูุฅุถุงูุฉ ุฅูู ุฐููุ ุชุฌุฏ ูู ูุฐู ุงูููุงุฉ ุฌู ูุน ุงูู ุดุงุฑูุน ุงูู ุฏููุนุฉ ุงูุชู ูู ููู ุงูุงุณุชูุงุฏุฉ ู ููุง ูุชุนูู ููููุฉ ุชูููุฐูุง ุจูุฌุงุญ. ุณูุงุก ููุช ู ุจุชุฏุฆูุง ูู ุนุงูู ุตูุงุนุฉ ุงูุจุฑุงู ุฌ ุฃู ู ุญุชุฑููุงุ ุณุชุฌุฏ ูู '๐๐ผ๐๐๐๐' ุงูู ูุงุฑุฏ ูุงูู ุนููู ุงุช ุงููุงุฒู ุฉ ูุชุญููู ูุฌุงุญู ูู ูุฐุง ุงูู ุฌุงู. ุงูุถู ุฅูููุง ุงูููู ูุงุจุฏุฃ ุฑุญูุชู ูุญู ุชุนูู ุตูุน ุงูุจุฑุงู ุฌ ุจูู ุณูููุฉ ููุณุฑ!
13 Jan, 19:25
08 Jan, 14:38
09 Dec, 14:10
09 Dec, 14:10
09 Dec, 14:10
09 Dec, 14:10
16 Nov, 16:53
01 Nov, 09:45
30 Oct, 11:17
25 Oct, 03:16
24 Oct, 22:47
24 Oct, 12:55
24 Oct, 12:55
18 Oct, 14:14
17 Oct, 19:31
Code to add margin to LinearLayout
int leftMarginDp = 16;
int topMarginDp = 8;
int rightMarginDp = 16;
int bottomMarginDp = 8;
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT
);
params.setMargins(
(int) (leftMarginDp * getResources().getDisplayMetrics().density + 0.5f),
(int) (topMarginDp * getResources().getDisplayMetrics().density + 0.5f),
(int) (rightMarginDp * getResources().getDisplayMetrics().density + 0.5f),
(int) (bottomMarginDp * getResources().getDisplayMetrics().density + 0.5f)
);
linearLayout.setLayoutParams(params);
07 Oct, 07:00