简体   繁体   English

Textview 未在 Android 布局中正确换行

[英]Textview is not wrapping correctly in Android layout

I'm facing problem while creating a page我在创建页面时遇到问题

在此处输入图片说明

When I add multiple lines the UI doesn't seems good当我添加多行时,用户界面看起来不太好

Here is my XML这是我的 XML

` `

<RelativeLayout
    android:id="@+id/Top_layout"
    android:layout_width="match_parent"
    android:layout_height="80dp"
    android:background="@drawable/title_bar_bg" >

    <ImageView
        android:id="@+id/app_name"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/ic_launcher" />
</RelativeLayout>

<RelativeLayout
    android:id="@+id/layout_sub_middle"
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:background="#D4D5D5" >

    <TextView
        android:id="@+id/titel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="5dp"
        android:layout_marginTop="4dp"
        android:text="Aller Biler"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:background="#000"
        android:gravity="bottom"
        android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginBottom="1dp"
    android:layout_marginTop="1dp" >

    <ImageView
        android:id="@+id/image_display_detail"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_gravity="center_horizontal"
        android:background="@drawable/ic_launcher" />
</RelativeLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="3" >

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_weight="1"
        android:text="Navn:" />

    <TextView
        android:id="@+id/display_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:ellipsize="none"
        android:maxLines="2"
        android:scrollHorizontally="false"
        android:singleLine="false"
        android:text="manish" />
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="50dp"
    android:weightSum="3" >

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_weight="1"
        android:text="Navn:" />

    <TextView
        android:id="@+id/display_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:text="What we are looking forBachelor degree or equivalentKeen interest in online marketing &amp; online business models3-4 years of experience in handling web analytics tools such as Google Analytics, Omniture or Web trendsUnderstanding of HTML and web protocolsBeginner-to-Intermediate JavaScript skillsComf" />
</LinearLayout>

` `

Please suggest how to handle the textviews.请建议如何处理文本视图。

Android doesn't support text justification , sorry. Android不支持文本对齐 ,对不起。 You can use android:gravity attribute to align text to left or right or center etc, but you can't really justify it. 您可以使用android:gravity属性将文本左对齐,右对齐或居中对齐,但是您无法真正证明其合理性。 The only option I guess is to use a WebView to show text and then use CSS to get the text justified 我猜唯一的选择是使用WebView显示文本,然后使用CSS使文本对齐

Try this: 尝试这个:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >

<RelativeLayout
    android:id="@+id/Top_layout"
    android:layout_width="match_parent"
    android:layout_height="80dp"
 >

    <ImageView
        android:id="@+id/app_name"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/ic_launcher" />
</RelativeLayout>

<RelativeLayout
    android:id="@+id/layout_sub_middle"
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:background="#D4D5D5" >

    <TextView
        android:id="@+id/titel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="5dp"
        android:layout_marginTop="4dp"
        android:text="Aller Biler"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:background="#000"
        android:gravity="bottom"
        android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginBottom="1dp"
    android:layout_marginTop="1dp" >

    <ImageView
        android:id="@+id/image_display_detail"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_gravity="center_horizontal"
        android:background="@drawable/ic_launcher" />
</RelativeLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
 android:weightSum="3"
>
    <LinearLayout 
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        >
          <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="Navn:" />
    </LinearLayout>

   <LinearLayout 
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        >

    <TextView
        android:id="@+id/display_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"       
        android:ellipsize="none"
        android:maxLines="2"
        android:scrollHorizontally="false"
        android:singleLine="false"
        android:text="manish" />
    </LinearLayout>
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="50dp"
    android:weightSum="3"
  >
    <LinearLayout 
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        >
    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="Navn:" />
    </LinearLayout>
     <LinearLayout 
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        >

    <TextView
        android:id="@+id/display_name"
        android:layout_width="wrap_content"
        android:gravity="left"
        android:layout_height="wrap_content"

        android:text="What we are looking forBachelor degree or equivalentKeen interest in online marketing &amp; online business models3-4 years of experience in handling web analytics tools such as Google Analytics, Omniture or Web trendsUnderstanding of HTML and web protocolsBeginner-to-Intermediate JavaScript skillsComf" />
</LinearLayout>
</LinearLayout>
</LinearLayout>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM