2014-01-17 5 views
0

나는 안드로이드에서 놀고 있는데, 내가 이루고자하는 것은 10x10tile 보드 게임이다. 화면의 크기와 너비를 읽은 다음 위와 아래의 textViews를 사용하여 가운데에 정사각형을 표시하고 싶습니다.ImageView가 화면에서 밀려 나왔다.

이것은 내가 지금까지 한 일이다 : 나는 diffrent의 LayoutParams을 시도했지만 아무것도 일을 끝낼 것 같다

public void init(){ 

     Point size = new Point(); 
     WindowManager w = getWindowManager();   

     if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { 
      w.getDefaultDisplay().getSize(size); 
      screenWidth = size.x; 
      screenHeight = size.y; 
     }else{ 
      Display d = w.getDefaultDisplay(); 
      screenWidth = d.getWidth(); 
      screenHeight = d.getHeight(); 
     } 

     LinearLayout linearLayout = (LinearLayout) findViewById(R.id.LinearLayout); 
     linearLayout.setOrientation(LinearLayout.VERTICAL); 

     TextView TVtop = new TextView(this.getApplicationContext()); 
     TVtop.setHeight((screenHeight-screenWidth)/2); 
     TVtop.setWidth(screenWidth); 
     TVtop.setText("TOP"); 

     TextView TVbot = new TextView(this.getApplicationContext()); 
     TVbot.setHeight((screenHeight-screenWidth)/2); 
     TVbot.setWidth(screenWidth); 
     TVbot.setText("BOT"); 

     TableLayout tableLayout = new TableLayout(this.getApplicationContext()); 

     //Make a cube 
     LayoutParams tableParams = new LayoutParams(screenWidth, screenWidth); 
     tableLayout.setLayoutParams(tableParams); 

     //Populate tableLayout 
     for(int i = 0; i < nrOfTiles; i++){ 

      TableRow tableRow = new TableRow(this.getApplicationContext()); 

      for(int j = 0; j < nrOfTiles; j++){ 

       ImageView imgView = new ImageView(this.getApplicationContext()); 
       imgView.setImageResource(R.drawable.cell); 
       tableRow.addView(imgView); 
      } 
      tableLayout.addView(tableRow); 
     } 

     linearLayout.addView(TVtop); 
     linearLayout.addView(tableLayout); 
     linearLayout.addView(TVbot); 
    } 
} 

. : S

BR

답변

1

는 개인적으로, 나는이 항목에 대한 RelativeLayoutsetMargins을 사용합니다.

질문에 대한 직접적인 대답은 아니지만 다음 코드는 3 개의 행에 15 개의 아이콘을 표시합니다. 설명하고 설명하기에 충분해야합니다.

주요 활동.

public class MainActivity extends Activity { 

    private int mWidth; 
    private int mTile; 
    private int mColMax = 5; 
    private Context mContext; 

    @SuppressWarnings("deprecation") 
    @SuppressLint("NewApi") 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 

     mContext = this; 

     // the screen width is need to work out the tile size 
     WindowManager w = getWindowManager(); 

     if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { 
      Point size = new Point(); 
      w.getDefaultDisplay().getSize(size); 
      mWidth = size.x; 
     }else{ 
      mWidth = w.getDefaultDisplay().getWidth(); 
     } 

     // how wide (and high) each icon will be to fit the screen. 
     mTile = (mWidth/mColMax); 

     setContentView(R.layout.activity_main); 
     // layout the icons 
     initUI(); 
    } 

    /** 
    * Layout 15 icon images in three rows dynamically. 
    */ 
    private void initUI() { 
     // this is the layout from the XML 
     ViewGroup layout = (ViewGroup) findViewById(R.id.main_layout); 

     ImageView iv; 
     RelativeLayout.LayoutParams params; 

     int i = 0; 
     int row = 0; 
     int col = 0; 
     do { 
      params = new RelativeLayout.LayoutParams(mTile,mTile); 
      params.setMargins((col * mTile), (row * mTile), 0, 0); 
      iv = new ImageView(mContext); 
      iv.setAdjustViewBounds(true); 
      iv.setScaleType(ScaleType.FIT_CENTER); 
      iv.setImageResource(R.drawable.ic_launcher); 
      iv.setLayoutParams(params); 
      layout.addView(iv); 
      if (col == mColMax) { 
       row++; 
       col = 0; 
      } else { 
       col++; 
      } 
     } while (++i <= 16); 
    } 
} 

그리고 레이아웃 XML.

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/main_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
</RelativeLayout>