垂直のLinearLayoutとTextViewがあります。
ファイル:unitdetails.xml
<LinearLayout
android:id="@+id/unit_details_person"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/unit_person_header"
android:orientation="vertical" />
ファイル:person_phone.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="0"
android:background="@android:color/darker_gray"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:paddingLeft="15dp"
android:text="Some text">
</TextView>
アクティビティコードにTextViewを追加します
while (iterator.hasNext()) {
Person person = iterator.next();
TextView positionTV = (TextView) getLayoutInflater().inflate(R.layout.person_position, null);
TextView personTV = (TextView) getLayoutInflater().inflate(R.layout.person_person, null);
TextView phoneTV = (TextView) getLayoutInflater().inflate(R.layout.person_phone, null);
TextView emailTV = (TextView) getLayoutInflater().inflate(R.layout.person_email, null);
positionTV.setText(person.getPosition());
personTV.setText(person.getPerson());
phoneTV.setText(person.getPhone());
emailTV.setText(person.getEmail());
Linkify.addLinks(phoneTV, Linkify.PHONE_NUMBERS);
Linkify.addLinks(emailTV, Linkify.EMAIL_ADDRESSES);
personLinearLayout.addView(positionTV);
personLinearLayout.addView(personTV);
personLinearLayout.addView(phoneTV);
personLinearLayout.addView(emailTV);
}
追加した後、電話番号の右側をクリックすると、TextViewは画面全体の幅とシステム開始ダイヤラを拡張します。