위의 사진에서 위의 [닉네임 글소개] 이 구조를 따라 만드려고 했지만
이 사진처럼 닉네임의 아래가 비어있게 배치가 됩니다.
TextView를 한 개만 써서 첫 번째 사진처럼 만들 순 있지만 두 개의 TextView를 사용해서 만드는 방법이 없을까요?
TextView 2개를 같은 라인에 쓰기 위해 아래 코드를 참고해보시기 바랍니다.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=" http://schemas.android.com/apk/res/android " android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal" android:weightSum="1" > <TextView android:id="@+id/nickname" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0.5" android:gravity="center" android:text="닉네임" /> <TextView android:id="@+id/comment" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0.5" android:gravity="center" android:text="방가방가" /> </LinearLayout>
TextView 2개를 같은 라인에 쓰기 위해 아래 코드를 참고해보시기 바랍니다.