¡@

Home 

2014/10/16 ¤W¤È 08:21:41

android Programming Glossary: quarterscreenwidth

How to use the gridlayout to fit screen size

http://stackoverflow.com/questions/10347846/how-to-use-the-gridlayout-to-fit-screen-size

size.y int halfScreenWidth int screenWidth 0.5 int quarterScreenWidth int halfScreenWidth 0.5 Spec row1 GridLayout.spec 0 2 Spec row2.. row1 colspan2 first.width screenWidth first.height quarterScreenWidth 2 twoByTwo1.setLayoutParams first twoByTwo1.setGravity Gravity.CENTER.. row2 col0 second.width halfScreenWidth second.height quarterScreenWidth twoByOne1.setLayoutParams second twoByOne1.setBackgroundColor..

How to use the gridlayout to fit screen size

http://stackoverflow.com/questions/10347846/how-to-use-the-gridlayout-to-fit-screen-size

.getSize size int screenWidth size.x int screenHeight size.y int halfScreenWidth int screenWidth 0.5 int quarterScreenWidth int halfScreenWidth 0.5 Spec row1 GridLayout.spec 0 2 Spec row2 GridLayout.spec 2 Spec row3 GridLayout.spec 3 Spec row4.. this GridLayout.LayoutParams first new GridLayout.LayoutParams row1 colspan2 first.width screenWidth first.height quarterScreenWidth 2 twoByTwo1.setLayoutParams first twoByTwo1.setGravity Gravity.CENTER twoByTwo1.setBackgroundColor Color.RED twoByTwo1.setText.. this GridLayout.LayoutParams second new GridLayout.LayoutParams row2 col0 second.width halfScreenWidth second.height quarterScreenWidth twoByOne1.setLayoutParams second twoByOne1.setBackgroundColor Color.BLUE twoByOne1.setText Staff Choices twoByOne1.setTextAppearance..