使用自定义malayalam ttf字体时,textView会被截止

时间:2014-01-26 07:51:47

标签: android android-layout textview

使用自定义malayalam ttf字体时,列表视图中的文本视图会被切断。我通过RSS Feed http://www.techlokam.in/feed获取列表视图的内容,我的自定义字体是Meera_04-2.ttf 请参阅此处的屏幕截图http://imageshack.com/a/img208/8039/k7pp.png

如何解决这个问题????

以下是我的布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<ListView
    android:id="@android:id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:divider="#bababa"
    android:dividerHeight="1dp"
    android:listSelector="@drawable/list_selector" 
    android:background="#ffffff" 
    android:cacheColorHint="#00000000"/>   
   </RelativeLayout>

rss项目布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="0dip" >


<!-- Article title -->
<TextView
    android:id="@+id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingBottom="1dip"
    android:textSize="30sp"
    android:textStyle="bold"
    android:textColor="#303030"
    android:singleLine="false"
     />

<!-- published date -->
<TextView 
    android:id="@+id/pub_date"
    android:layout_below="@id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingBottom="3dip"
    android:textSize="14sp"
    android:textColor="#b70400"/>

<!-- article description -->
<TextView android:id="@+id/link"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:paddingBottom="6dip"
    android:textSize="20sp"
    android:textColor="#8d8d8d"
    android:layout_below="@id/pub_date"/>
  </RelativeLayout>

0 个答案:

没有答案