我无法获得看似简单的布局配置!!
我在一个Relative中有两个textview(尝试过Linear水平方向)和" wrapcontent" - 我希望他们一个在旁边。类似的东西:
当第一个文本很长 - 比一行中显示的文本长时,第一个文本转到第二行,第二个Textview消失(转到右下角)。如下所示:
2.对于长标题 - 观察计数消失到右边
<RelativeLayout
android:orientation="horizontal"
android:id="@+id/feedHeader"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical">
<TextView
android:id="@+id/textView1"
style="@style/BoldTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"
android:layout_alignParentLeft="true"
android:layout_marginTop="5dp"
android:paddingBottom="0dp"
android:text="Title Loooooooggggggg Title Looong"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/pageCounts"
style="@style/WayBoardCount"
android:layout_width="wrap_content"
android:minWidth="50dp"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/textView1"
android:layout_toRightOf="@id/textView1"
android:checked="false"
android:gravity="left|center_vertical"
android:text="3/5"
android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>
我希望小文本(计数)在旁边&#34; Looong&#34;而不是消失在右边
- 尝试了#34;第二个文本视图的最小尺寸&#34;
- 水平方向的线性布局
醇>
修改 在这个帖子中给出的一些解决方案/答案仍然没有解决我的问题(为了别人的利益,我有下面的输出):
答案 0 :(得分: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/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:gravity="center"
android:text="Title Loooooooggggggg Title Looong"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/pageCounts"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:gravity="center"
android:text="3/5"
android:textAppearance="?android:attr/textAppearanceSmall"" />
</LinearLayout>
如果文字太大,则无法以单行显示。在那段时间,您可以使用 android:ellipsize
android:ellipsize="end"
答案 1 :(得分:0)
我理解你的问题。所以你可以使用spannable。关于metrics的有用链接。 希望它有助于tutorial
简单的鳕鱼:
private void updateText(TextView textView, String bigText, String smallText) {
SpannableString spannableString = new SpannableString(bigText + smallText);
spannableString.setSpan(new RelativeSizeSpan(1.4f), 0, bigText.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
spannableString.setSpan(new RelativeSizeSpan(1.0f), bigText.length(), spannableString.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(spannableString);
}
答案 2 :(得分:0)
就这样做
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="VeryVeryVeryVeryVeryVeryVeryVeryVeryVeryLongText"
android:layout_weight="1"/>
<TextView
android:layout_width="match_parent"
android:gravity="start|bottom"
android:layout_height="5dp"
android:textSize="5sp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="SmallText"
android:layout_weight="1"/>
</LinearLayout>
答案 3 :(得分:0)
您也可以对RelativeLayout
执行相同的操作,以下是虚拟代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/feedHeader"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal" >
<TextView
android:id="@+id/pageCounts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerInParent="true"
android:checked="false"
android:text="3/5"
android:textAppearance="?android:attr/textAppearanceSmall" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginBottom="0dp"
android:layout_marginTop="5dp"
android:layout_toLeftOf="@+id/textView2"
android:paddingBottom="0dp"
android:text="Title Loooooooggggggg Title Looong Loong"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
答案 4 :(得分:0)
显然我一直在寻找“Span-able String”!!