Android : LinearLayout에 테두리를 그리는 방법
세 개의 파일이 있습니다. XML, 그리기 기능 및 주요 활동. LinearLayoutXML 파일에 일부 가 있습니다. <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1"> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:background="#ef3" android:id="@+id/img01"/> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:background="#E8A2B4" android:id="@+id/img02"/> </LinearLayout> 이것은 그리기 기능입니다. public class getBorder extends TextView { public getBorder(Context context) { super(context); } @Override protected …