我使用约束布局,我希望实现以下目标:
app:layout_constraintBaseline_toBaselineOf属性底部对齐两个textview,有没有办法将两者对齐?常规应用:layout_constraintTop_toTopOf当然不起作用,因为尺寸不同。
答案 0 :(得分:1)
试试这个。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_unit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:text="$"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="top"
android:text="120"
android:textSize="40sp"
android:textStyle="bold"
app:layout_constraintLeft_toRightOf="@+id/tv_unit"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
喜欢这个。
答案 1 :(得分:0)
试试这个 您可以将 Html.fromHtml 用于此目的
<强> Html.fromHtml 强> 从提供的HTML字符串返回可显示的样式文本。
yourTextview.setText(Html.fromHtml("<sup><small>$</small></sup>42"));
或尝试使用 SpannableString
TextView textView = rootView.findViewById(R.id.tv);
SpannableStringBuilder sb = new SpannableStringBuilder("$42");
sb.setSpan(new SuperscriptSpan(), 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(sb, TextView.BufferType.SPANNABLE);
答案 2 :(得分:0)
这样做
String s = "$<sub>12 </sub>";
textView.setText(Html.fromHtml(s)); // 12 will cropped
// solution:
s = "$<sub>12 </sub>\t "; // add behind ending of sup tag the tabulator \t,
// but not char \t but only press to TAB key!!! in source code
textView.setText(Html.fromHtml(s)); // 12 is visible correctly
http://android.okhelp.cz/whittled-superscript-sup-tag-textview-android-issue/
答案 3 :(得分:0)
所以似乎没有一种方便的方法来实现这一点,必须实现自定义视图。我从这里获得了灵感: