한 두세번 질문 올리는것 같네요.. 죄송해요. 해결이 되지 않아서 ㅠ
테이블레이아웃으로 바둑판 형식을 만들고
각 셀에 배경색을 주고 마진으로 셀 간격을 띄웠는데요.
알수없는 여백? 테두리? 같은게 겹쳐서 생깁니다.
스크린샷을 보면 알겠지만 특정부분은 흰색바탕으로 잘나오는데
특정부분은 뭔가..여백같기도 하고 테두리 같기도 한 것들이 겹쳐져 있어요..
조언좀 주세요~
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<!--1행-->
<TableRow>
<!--1행 : 1열 ~ 5열-->
<View
android:layout_width="6dp"
android:layout_height="6dp"
android:layout_margin="@dimen/table_margin"
android:background="#ff5f93ff"/>
<TextView
android:layout_width="6dp"
android:layout_height="6dp"
android:layout_margin="@dimen/table_margin"
android:background="#ff5f93ff"/>
<TextView
android:layout_width="@dimen/table_cell_width"
android:layout_height="@dimen/table_cell_height"
android:layout_margin="@dimen/table_margin"
android:background="#ff5f93ff"/>
<TextView
