- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要这个:
我得到的是这个:
我的 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>
我做错了什么?
我的设计看起来不错:
我在一个 TextView 中编写了整个文本并引用了字符串资源:
<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>
最佳答案
亲爱的,这样试试效果很好
像下面这样在字符串xml中创建String
<string name="text">3G Plus network \n\n 5wifi </string>
并在您的 TextView 文本中使用它
用这个替换你的字符串
<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>
关于android - xml中行间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35570556/
我想在 scilab 中绘制 limacon,我有这个方程需要处理: 我知道r>0和l>0 当我编译以下代码时,我在第 5 行收到此错误: Inconsistent row/column dimens
我试图更好地了解行和行集在 PeopleCode 中的用途?我读完了PeopleBooks,但仍然觉得我没有很好的理解。我希望对这些与应用程序引擎程序相关的内容有更多的了解。也许通过一个例子可能会有所
我有 4 列的行,每列都有一个标题和一些文本。大多数列都有相似数量的文本,将其列中的按钮向下按以匹配其余列。但是,一列的文本较少,并且没有将按钮向下推得足够远。 有没有办法将按钮对齐到行的底部?我想实
我有这个模型 summary = models.TextField() 但我只想有 4 行和 15 列。 此外,如果我这样做,我是否需要重新安装数据库。 最佳答案 TextField
我想在 iPhone 中创建 SSL 服务器套接字的客户端,但我在 iPhone 中找不到任何 API。我有带密码的有效证书文件 最佳答案 你看过OpenSSL了吗? ? 关于iphone - iPh
For Each cell In sheets(1).Range("A50:A606") For Each cell2 In sheets(2).Range("EX2:ACB2") cell2.
这是我的矩阵 [,1] [,2] M -1 -5 T 8 -4 W -3 9 Th
我有一个全局char *在运行时,重新声明为指向声明为 way 的二维数组的指针。 : char (*A)[N][M] = malloc(sizeof(char[BUF_16][N][M])); 然后
我是一名优秀的程序员,十分优秀!