私は相対レイアウトで2つのテキストビューを持っています。最初のtextviewのサイズは固定で、2番目のtextviewのサイズは動的です。私はすべての利用可能な幅want output like thisを埋めるために私の2番目のテキストビューが欲しいが、私はこれを行うことができません。出来ますか? this is what i am getting right nowテキストビューに使用可能な幅を入力してください
私のxml:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/ten_dp">
<com.staff_have_says.utitlies.MyTextViewBold
android:id="@+id/banner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Massage To Management"
android:background="@android:color/holo_green_dark"
android:padding="@dimen/ten_dp"
android:textColor="@color/white"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/banner"
android:text="Flaticon Basic License. It's necessary to credit the author. How to credit the authorship of the icons?Flaticon Basic License. It's necessary to credit the author. How to credit the authorship of the icons?"
/>
</RelativeLayout>
あなたの 'xml'コードを表示してください。 –
@jaydroider私はthat.checkを編集しました。 –
2つの別々のTextViewで構築することはできません。たとえば、SpannableStringを試してください。下記のpawegioのようなもの。 – Mike