如何在 Android Studio 中将 textView 放置在 textView 中?
How to place a textView inside a textView in Android Studio?
所以,我有一个文本视图(一条消息),我想在其中显示时间,在右下角,同时确保消息中的文本内容不会覆盖在上面并环绕。现在,我可以管理程序部分如何获取时间和设置文本等等,但我不能做的是将日期放在文本视图中,如下所示:
这是我设法做到的:
这就是我想要的:
谁能告诉我如何将这样的文本视图放在另一个文本视图中。
谢谢!
这里有一个存档的例子。
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
app:cardCornerRadius="8dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/green_2">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/text"
android:layout_margin="8dp"/>
<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/time"
android:layout_margin="8dp"
android:drawablePadding="8dp"
android:layout_gravity="end"
app:drawableEndCompat="@drawable/ic_baseline_done_all_24" />
</LinearLayout>
</androidx.cardview.widget.CardView>
输出是这样的:-
希望对您有所帮助!
所以,我有一个文本视图(一条消息),我想在其中显示时间,在右下角,同时确保消息中的文本内容不会覆盖在上面并环绕。现在,我可以管理程序部分如何获取时间和设置文本等等,但我不能做的是将日期放在文本视图中,如下所示:
这是我设法做到的:
这就是我想要的:
谁能告诉我如何将这样的文本视图放在另一个文本视图中。
谢谢!
这里有一个存档的例子。
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
app:cardCornerRadius="8dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/green_2">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/text"
android:layout_margin="8dp"/>
<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/time"
android:layout_margin="8dp"
android:drawablePadding="8dp"
android:layout_gravity="end"
app:drawableEndCompat="@drawable/ic_baseline_done_all_24" />
</LinearLayout>
</androidx.cardview.widget.CardView>
输出是这样的:-
希望对您有所帮助!