我希望增加文字和它之间的空格。我可以改变行高,但我不会改变文本之间的高度和它的下划线。我怎么能这样做?
private static final String FONTH_PATH = "fonts/Brandon_bld.otf";
...
selectTextView = (TextView) findViewById(R.id.selectTextView);
selectTextView.setTypeface(font);
SpannableString content = new SpannableString(getResources().getString(R.string.select_your_prove_type));
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
selectTextView.setText(content);
...
和xml文件
<TextView
android:id="@+id/selectTextView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="536"
android:gravity="left"
android:lineSpacingMultiplier="0.8"
android:text="@string/select_your_prove_type"
android:textColor="@color/Blue"
android:textSize="@dimen/select_size" />
答案 0 :(得分:8)
只需使用
即可paddingBottom来
如下
<android.support.design.widget.TextInputLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<EditText
android:id="@+id/fragment_activity_edit_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="16dp"
android:hint="Description"
android:textSize="34sp"
tools:text="Secret Death Ray Design"/>
</android.support.design.widget.TextInputLayout>
答案 1 :(得分:1)
好的,这是一个更完整的答案:
在styles.xml中,添加样式:
<style name="MyTour.HeadingText">
<item name="android:background">@drawable/tour_header_line_layerlist</item>
</style>
现在创建一个包含内容的tour_header_line_layerlist.xml文件:
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="20dp" android:drawable="@drawable/tour_header_line"/>
</layer-list>
以上将为该行设置20dp的上限(将其提取到dimen.xml以获得完整性)
现在创建相应的tour_header_line.xml:
<shape android:shape="line"
xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="1dp"
android:color="@color/tour_subheading_color" />
现在引用控件中的样式:
<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/tour_1_heading_text"
android:id="@+id/heading_text" android:layout_gravity="center_horizontal"
style="@style/MyTour.HeadingText" //notice this
android:layout_marginTop="@dimen/margin_large"/>
如果您有其他问题,请告诉我们!
答案 2 :(得分:0)
您可以使用可绘制文件添加自定义下划线(在我的情况下,我已创建阴影)并使用
设置此自定义下划线android:background="@drawable/shadow_file.xml"
之后,在EditText中添加填充,可以在行和文本之间添加更多空格。
android:paddingBottom="@dimen/underline_space"
并在dimens.xml文件中定义此维度。
这对我有用,我也希望你也能这样做:)
答案 3 :(得分:-1)
在EditText
<EditText
...
android:includeFontPadding="true"
android:paddingBottom="20dp" />