我正在一个应用程序中工作,我有一个循环视图来显示用户输入的单词。
我希望它看起来像
word1 - word2
longer word1 - word3
但我得到
word1 - word2
longer word1 - word3.
我尝试放置三个textview并在循环视图中使用它们,但到目前为止还没有成功。也许人们可以计算单词对中的字符并在末尾添加空格,这样两个单词都同样大。但这感觉就像是一个糟糕的解决方案。
有什么想法吗?
我使用了LinearLayout
和RelativeLayout
,当我使用LinearLayout
时,结果如上所述。当我使用RelativeLayout
时,只会显示最后两个单词。在第一个TextView
中看不到任何东西。
以下是xml文件和java代码
textviews:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textSize="@dimen/active_text_size"
android:layout_toStartOf="@id/adapter_textview2"
android:id="@+id/adapter_textview1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:textSize="@dimen/active_text_size"
android:id="@+id/adapter_textview2"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_toEndOf="@id/adapter_textview2"
android:textSize="@dimen/active_text_size"
android:id="@+id/adapter_textview3"/>
</RelativeLayout>
活动布局:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/activity_root"
tools:context="com.example.erikbylow.autoflash.TranslateActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:id="@+id/linear_input"
android:layout_height="50dp"
android:background="@android:color/white"
android:orientation="horizontal">
<EditText
android:layout_width="0dp"
android:layout_weight="0.75"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:singleLine="true"
android:id="@+id/source_input"
android:hint="Type text to translate"/>
<Button
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="0.25"
android:layout_alignRight="@+id/source_input"
android:text="Translate"
android:clickable="true"
android:onClick="startTranslate"
android:background="@android:color/holo_green_dark"/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/translate_recycle"
android:scrollbars="vertical"
android:background="@android:color/holo_blue_bright" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
来自CustomAdapter
@Override
public void onBindViewHolder(ViewHolder viewHolder, final int position){
Log.d(TAG, "Element " + position + " set." + mDataSet.get(position).w1);
viewHolder.getLeftTextView().setText(mDataSet.get(position).w1);
viewHolder.getCenterTextView().setText(" - ");
viewHolder.getRightTextView().setText( mDataSet.get(position).w2);
}
编辑:
感谢您的帮助,使用ADM:s
提案并添加textAlignment
,如何获得我想要的内容。
<?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"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:textAlignment="textEnd"
android:textSize="@dimen/active_text_size"
android:id="@+id/adapter_textview1"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:textAlignment="center"
android:textSize="@dimen/active_text_size"
android:id="@+id/adapter_textview2"/>
<TextView
android:textAlignment="textStart"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:textSize="@dimen/active_text_size"
android:id="@+id/adapter_textview3"/>
</LinearLayout>
答案 0 :(得分:1)
从右侧对齐TextView's
。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/adapter_textview2"
android:id="@+id/adapter_textview1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_toLeftOf="@+id/adapter_textview3"
android:id="@+id/adapter_textview2"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:id="@+id/adapter_textview3"/>
</RelativeLayout>
根据需要添加margins
和padding
。
如果Text
无法预测任何长度,您应该依赖LinearLayout
layout_weight
。
<?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"
android:orientation="horizontal"
android:gravity="center">
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:id="@+id/adapter_textview1"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:id="@+id/adapter_textview2"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:id="@+id/adapter_textview3"/>
</LinearLayout>
答案 1 :(得分:0)
好吧所以我不知道为什么你有3个文本视图,当例子连续只显示2个。
我提出了这个问题 - 将布局更改为具有水平方向的线性布局并添加一些重量,以便第二个文本视图保持原位。
尝试并告诉我它是否有效:
<?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"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/adapter_textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:padding="8dp"
android:text="reallly loooong looooong text"
android:textSize="@dimen/active_text_size" />
<TextView
android:id="@+id/adapter_textview2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignEnd="@+id/adapter_textview1"
android:layout_alignParentTop="true"
android:layout_gravity="center"
android:layout_weight="22"
android:padding="8dp"
android:text="long text"
android:textSize="@dimen/active_text_size" />
</LinearLayout>