weightsum을 통해서
이미지 버튼 사이와 양끝에 여백을 textview 생성했는데
textview 생성이 되지 않네요..
아래의 소스와
사진에 보시면 위에처럼 하고 싶은데 아래 소스는 밑에 처럼 되네요.
해결방법이 있나요?
제가 아니면 착각한 부분이 있나요?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="150"
android:weightSum="1080">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="56"/>
<ImageButton
android:id="@+id/bt_button"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:background="@drawable/bt"
android:layout_weight="434"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="100"/>
<ImageButton
android:id="@+id/btdis_button"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:background="@drawable/btdisconnect"
android:layout_weight="434"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="56"/>
</LinearLayout>
