gpt4 book ai didi

android - 具有 View 动态获取行/列的 GridLayout

转载 作者:行者123 更新时间:2023-11-29 15:43:50 24 4
gpt4 key购买 nike

我刚刚关注了这个 tutorial , 创建自定义 View 作为 GridLayout 的项目。

那是我的CustomView

public class RowView extends View{

boolean touchOn;
boolean mDownTouch = false;
private OnToggledListener toggledListener;
int _IdRow = 0;
int _IdColumn = 0;

public RowView(Context context, int Rows, int Columns) {
super(context);
this._IdRow = Rows;
this._IdColumn = Columns;
init();
}

public RowView(Context context) {
super(context);
init();
}

public RowView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}

public RowView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}

private void init() {
touchOn = false;
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec),
MeasureSpec.getSize(heightMeasureSpec));
}

@Override
protected void onDraw(Canvas canvas) {
if (touchOn) {
canvas.drawColor(Color.RED);
} else {
canvas.drawColor(Color.GRAY);
}
}
//onClick not possible to use on custom View so, onTouchEvent is the solution
@Override
public boolean onTouchEvent(MotionEvent event) {
super.onTouchEvent(event);

switch (event.getAction()) {
//if Click
case MotionEvent.ACTION_DOWN:

touchOn = !touchOn;
invalidate();

if(toggledListener != null){
toggledListener.OnToggled(this, touchOn);
}

mDownTouch = true;
return true;

case MotionEvent.ACTION_UP:
if (mDownTouch) {
mDownTouch = false;
performClick();
return true;
}
}
return false;
}

@Override
public boolean performClick() {
super.performClick();
return true;
}

public void setOnToggledListener(OnToggledListener listener){
toggledListener = listener;
}

public int get_IdRow() {
return _IdRow;
}

public int get_IdColumn() {
return _IdColumn;
}

在这个类上,我可以检测到用户何时单击 GridLayout 的项目并将其更改为另一种颜色,没关系。但是问题出现在创建这个的时候:

这是我的 MainActivity,我在其中显示 GridLayout:

int numOfCol = mGridLayout.getColumnCount();
int numOfRow = mGridLayout.getRowCount();
mRowViews = new RowView[numOfCol*numOfRow];
for(int yPos=0; yPos<numOfRow; yPos++){
for(int xPos=0; xPos<numOfCol; xPos++){
RowView tView = new RowView(this, xPos, yPos);
tView.setOnToggledListener(this);
mRowViews[yPos*numOfCol + xPos] = tView;
mGridLayout.addView(tView);
}
}
mGridLayout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener(){

@Override
public void onGlobalLayout() {

final int MARGIN = 5;

int pWidth = mGridLayout.getWidth();
int pHeight = mGridLayout.getHeight();
int numOfCol = mGridLayout.getColumnCount();
int numOfRow = mGridLayout.getRowCount();
int w = pWidth/numOfCol;
int h = pHeight/numOfRow;

for(int yPos=0; yPos<numOfRow; yPos++){
for(int xPos=0; xPos<numOfCol; xPos++){
GridLayout.LayoutParams params =
(GridLayout.LayoutParams)mRowViews[yPos*numOfCol + xPos].getLayoutParams();
params.width = w - 2*MARGIN;
params.height = h - 2*MARGIN;
params.setMargins(MARGIN, MARGIN, MARGIN, MARGIN);
mRowViews[yPos*numOfCol + xPos].setLayoutParams(params);
}
}
}});

还有一个 Interface OnToggledListener 的方法,它在我的 GridLayout 的一个项目是点击:

@Override
public void OnToggled(MyView v, boolean touchOn) {
//get the id string
String idString = v.get_IdRow() + ":" + v.get_IdColumn();
}

我想避免创建 mGridLayout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() 因为它会在屏幕上填充我不想要的东西...我试图将 GridLayout 6x6 与 android:layout_height="400dp" 放在一起,但它只显示 3x3,这是 LogCat 消息

D/android.widget.GridLayout: vertical constraints: y6-y0>=1749, y6-y5<=291, y5-y4<=291, y4-y3<=291, y3-y2<=291, y2-y1<=291, y1-y0<=291 are inconsistent; permanently removing: y6-y5<=291.

我想做类似 GridLayout[row][colum] 的事情来获取背景颜色然后做一些事情,但我找不到这个解决方案。

最佳答案

为了简化,您可以实现一个自定义的 Board View 来包装 GridLayout 和相关逻辑。下面我报告一种可能的方法。

这里的期望是有一个 ItemView 来表示板上的一个单元格。

public class Board extends FrameLayout implements View.OnClickListener {

private GridLayout mGridView;
private int mRowsCount;
private int mColsCount;
private int mCellSpace;
private OnItemClickListener mOnItemClickListener;

public Board(Context context) {
super(context);
init(context, null);
}

// other constructors

private void init(Context context, AttributeSet attrs) {
// default values
mRowsCount = 1;
mColsCount = 1;
View layout = inflate(getContext(), R.layout.view_lights_board, null);
mGridView = (GridLayout) layout.findViewById(R.id.view_grid);
mGridView.setRowCount(mRowsCount);
mGridView.setColumnCount(mColsCount);
mGridView.post(new Runnable() {
@Override
public void run() {
int width = getMeasuredWidth() / getColumnsCount();
int height = getMeasuredHeight() / getRowsCount();
for (int i = 0; i < getRowsCount(); i++) {
for (int j = 0; j < getColumnsCount(); j++) {
GridLayout.LayoutParams params = (GridLayout.LayoutParams)
getChildAt(i, j).getLayoutParams();
params.width = width;
params.height = height;
getChildAt(i, j).setLayoutParams(params);
}
}
}
});
addView(layout);
}

// this method allows to dinamically create grid
public void buildChildren(int rowsCount, int colsCount) {
mRowsCount = rowsCount;
mColsCount = colsCount;
mGridView.setRowCount(mRowsCount);
mGridView.setColumnCount(mColsCount);
buildChildren();
}

public void buildChildren() {
for (int i = 0; i < getRowsCount(); i++) {
for (int j = 0; j < getColumnsCount(); j++) {
ItemView view = new ItemView(getContext(), i, j);
view.setOnClickListener(this);
mGridView.addView(view);
}
}
}

public void setOnItemClickListener(OnItemClickListener listener) {
mOnItemClickListener = listener;
}

public ItemView getChildAt(int rowIndex, int columnIndex) {
int index = (getColumnsCount() * rowIndex) + columnIndex;
return (ItemView) mGridView.getChildAt(index);
}

public boolean isTouchOn(int rowIndex, int columnIndex) {
return getChildAt(rowIndex, columnIndex).isTouchOn();
}

public int getColumnsCount() {
return mGridView.getColumnCount();
}

public int getRowsCount() {
return mGridView.getRowCount();
}

@Override
public void onClick(View v) {
if (v instanceof ItemView) {
ItemView view = (ItemView) v;
if (mOnItemClickListener != null) {
mOnItemClickListener.onItemClick(view);
}
}
}

public interface OnItemClickListener {

void onItemClick(ItemView view);

}

}

在你的 Activity 布局中你会有这样的东西(这里我假设你的应用程序包是 com.android.example):

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<com.android.example.Board
android:id="@+id/grid"
android:layout_width="match_parent"
android:layout_height="400dp" />

</FrameLayout>

这是 Activity 的可能实现:

public class MainActivity extends AppCompatActivity implements LightsOutBoard.OnItemClickListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Board board = (Board) findViewById(R.id.grid);
board.setOnItemClickListener(this);

board.buildChildren(3, 3);
}

@Override
public void onItemClick(ItemView view) {
String text = view.getRowIndex() + " - " + view.getColumnIndex();
Toast.makeText(this, text, Toast.LENGTH_SHORT).show();
}

}

希望这对您有所帮助。

关于android - 具有 View 动态获取行/列的 GridLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36063659/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com