您好我正在尝试设计棋盘,我使用的GridLayout包含对应于棋盘块的按钮。但是布局要大得多以至于不适合屏幕,我如何减小按钮尺寸以使布局适合屏幕。
这是代码
public class BoardActivity extends AppCompatActivity {
private GridLayout mBoard;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_board);
mBoard = (GridLayout)findViewById(R.id.board_grid);
addItems();
}
public void addItems(){
int index = 0;
Button button;
for(int i = 0; i < 8; i++){
for(int j = 0; j < 8; j++){
button = new Button(this);
button.setId(index);
button.setPadding(0,0,0,0);
button.setText(""+index);
mBoard.addView(button);
index++;
}
}
}
}
以下是xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context="com.example.harsh.chessgame.BoardActivity">
<GridLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:rowCount="8"
android:columnCount="8"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginBottom="0dp"
android:layout_marginTop="0dp"
android:id="@+id/board_grid">
</GridLayout>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/test_text"/>
</LinearLayout>
请帮助,抱歉错误并感谢您的帮助。
答案 0 :(得分:0)
在您的代码中,您已经以编程方式创建了按钮,并且没有为它们指定任何宽度或高度。您可以在代码中添加以下行,并调整宽度和高度。
button.setLayoutParams(new LinearLayout.LayoutParams(100, 100));
但是为了实现国际象棋游戏,我应该为gridview创建一个自定义适配器,并且应该对黑白盒子的图像进行充气。无论如何,对于您目前的尝试,这将有助于您。
注意:宽度和高度只是一个随机数,目前为100。