我想要这个:
我得到了这个:
我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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: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="autogenie.plandetail.MainActivity">
<android.support.v7.widget.Toolbar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/view"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_below="@+id/view"
android:layout_alignParentStart="true"
android:id="@+id/relativeLayout">
<ImageView
android:layout_width="100dp"
android:layout_height="fill_parent"
android:id="@+id/imageView"
android:layout_centerVertical="true"
android:layout_alignParentStart="true"
android:src="@drawable/abc_list_selector_disabled_holo_dark" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Plan:"
android:id="@+id/textView"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/imageView"
android:textColor="#000000"
android:textStyle="bold" />
<TextView
android:textColor="#000000"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Monthly Rental:"
android:id="@+id/textView2"
android:layout_below="@+id/textView"
android:layout_toEndOf="@+id/imageView" />
<TextView
android:textColor="#000000"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Free Data:"
android:id="@+id/textView3"
android:layout_below="@+id/textView2"
android:layout_toEndOf="@+id/imageView" />
<TextView
android:textColor="#000000"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Overage Charge:"
android:id="@+id/textView4"
android:layout_below="@+id/textView3"
android:layout_toEndOf="@+id/imageView" />
<TextView
android:textColor="#000000"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Network:"
android:id="@+id/textView5"
android:layout_below="@+id/textView4"
android:layout_toEndOf="@+id/imageView" />
<TextView
android:textColor="#000000"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Remarks:"
android:id="@+id/textView6"
android:layout_below="@+id/textView5"
android:layout_toEndOf="@+id/imageView" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/relativeLayout"
android:layout_centerHorizontal="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Features"
android:id="@+id/textView7"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:textStyle="bold" />
<TextView
android:textColor="#000000"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/textView8"
android:layout_alignParentStart="true"
android:layout_below="@+id/textView7"
android:text="@string/features" />
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Continue"
android:id="@+id/button"
android:layout_below="@+id/textView8"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true"
android:textColor="#ffffff"
android:background="#2c75ba"
android:layout_alignParentBottom="true" />
</RelativeLayout>
</RelativeLayout>
我做错了什么?
我的设计很好看:
我在一个文本视图中编写了整个文本,并引用了字符串资源:
<resources>
<string name="app_name">Plandetail</string>
<string name="features"> 
3GPLUS network 

5 WiFi-enabled Devices-Smartphone,Laptop,Tablets

 
Works with Laptop USB,Car Charger and Travel Charger 

Plug and Play 
 

EVDO Rev.B 800/1900 MHz-14.7Mbps/5.4Mbps 
 
WiFi 802.11b/g/n 
 
Dual LED indicators for Wi-Fi and Network 
 
Works with Laptop USB,Car Charger and Travel Charger
 
</string>
</resources>
答案 0 :(得分:1)
亲爱的尝试这样做很好
在字符串xml中创建字符串,如下所示
<string name="text">3G Plus network \n\n 5wifi </string>
并在文字视图文字中使用
用此
替换字符串 <string name="text">\n3GPLUS network\n\n5 WiFi-enabled Devices-Smartphone,Laptop,Tablets\n\nWorks with Laptop USB,Car Charger and Travel Charger\n\nPlug and Play\n\n
EVDO Rev.B 800/1900 MHz-14.7Mbps/5.4Mbps\n\nWiFi 802.11b/g/n\n\nDual LED indicators for Wi-Fi and Network\n\nWorks with Laptop USB,Car Charger and Travel Charger</string>
答案 1 :(得分:0)
请在textview中使用..
android:lineSpacingExtra="2dp"
我希望它可以解决你的问题。
答案 2 :(得分:0)
您可以在XML文件中的TextViews中使用lineSpacingExtra和lineSpacingMultiplier。如果有效,请告诉我们。
答案 3 :(得分:0)
你可以使用 android:lineSpacingExtra - 文本行之间的额外间距。 android:lineSpacingMultiplier - 文本行之间的额外间距,作为乘数。
来源:http://developer.android.com/reference/android/widget/TextView.html
答案 4 :(得分:0)
我可以在你的代码中看到的一个大问题是你需要缩小该按钮,如果你保持它更小你会看到文本开始更好地排队 你可以声明按钮的文字大小 机器人:TEXTSIZE = “35SP”
机器人:layout_marginTop = “30DP” 并尝试第二行帮助缩小按钮!