我有两个textView。一-文字支架,第二-计数支架。当文本保持器为一宽度时,all seems correct.但是当文本为两个或更多字符串时,我的文本显示量将离开屏幕。 (look screens)。我已经尝试过相对和约束条件,但都无法正常工作
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:background="?android:attr/selectableItemBackground"
android:clickable="true"
android:focusable="true"
android:orientation="horizontal"
android:padding="@dimen/margin_general_16dp">
<TextView
android:id="@+id/testText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingStart="@dimen/margin_general_16dp"
android:textColor="@color/text_color_general"
android:textSize="@dimen/text_size_general"
tools:text="Test test test Test test test Test test test Test test test Test test test Test test test"/>
<TextView
android:id="@+id/testAmount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_small_8dp"
android:textColor="@color/redorange"
android:textSize="@dimen/text_size_general"
tools:text="50"/>
</LinearLayout>
答案 0 :(得分:1)
使用以下代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal">
<TextView
android:id="@+id/testText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
tools:text="Test test test Test test test Test test test Test test test Test test test Test test test"/>
<TextView
android:id="@+id/testAmount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
tools:text="50"/>
</LinearLayout>
答案 1 :(得分:0)
使用android:layout_weight
属性。
根据需要设置TextView的权重。
尝试以下代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:clickable="true"
android:focusable="true" android:orientation="horizontal"
android:gravity="center_vertical"
android:padding="@dimen/margin_general_16dp">
<TextView
android:id="@+id/testText"
android:layout_weight=".5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingStart="@dimen/margin_general_16dp"
android:textColor="@color/text_color_general"
android:textSize="@dimen/text_size_general"
android:text="Test test test Test test test Test test test Test test test Test test test Test test test"
android:paddingLeft="@dimen/margin_general_16dp" />
<TextView
android:id="@+id/testAmount"
android:layout_weight=".5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_small_8dp"
android:textColor="@color/redorange"
android:textSize="@dimen/text_size_general"
android:text="50"
android:layout_marginLeft="@dimen/margin_small_8dp" />
</LinearLayout>
希望它对您有用。