7

当在 TextView 中用阿拉伯语写内容时,每行中的第一个单词会被剪切!!

仅当我将字体设置为 TextView 时才会出现此问题!

卡蒂格

这是我的xml代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:id="@+id/articleTEXT"

    />

注意:内容将从 SQLite 数据库中检索。

4

5 回答 5

1

你可以试着把它放在你的 LinearLayout 或 TextView 中:

    android:layout_marginRight="20dp"
于 2013-12-22T17:06:48.527 回答
1

它将起作用,在线性布局中添加填充并采用 textview 匹配父级的宽度。

  <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"
            android:padding="4dp">

            <TextView
                android:id="@+id/articleTEXT"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scrollbars="vertical"
            />

        </LinearLayout>
于 2013-08-23T05:03:40.570 回答
0

在 textview 中将重力设置为右侧,然后将 paddingRight 设置为 20dp。

或者只是放入padding=30dp您的线性布局。

于 2013-08-23T12:44:35.703 回答
0

尝试这个 ...

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
    android:padding="10dp"
 >
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:id="@+id/articleTEXT"

    />
于 2013-08-23T04:47:58.037 回答
0

尝试这个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" 
android:layout_margin="5dp">
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:id="@+id/articleTEXT"
    android:padding="5dp"
/>
于 2013-08-23T13:09:19.760 回答