作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在不干扰我的背景图像的情况下填充我的 textview,但是当我在相对布局上进行填充时,它会从周围裁剪我的背景而且当我尝试从 textview 中填充时,它会裁剪我的文本
这是我的代码
<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"
tools:context=".TesbihMainActivity" >
<ImageView
android:id="@+id/backroundimage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:scaleType="centerCrop"
android:src="@drawable/tesbihbackround"
/>
<TextView
android:id="@+id/display"
android:layout_width="fill_parent"
android:layout_height="63dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="#e9ebec"
android:text=" 385 "
android:gravity="center"
android:textSize="52dp"
android:textColor="#3c677b"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
最佳答案
您可以在 textView 上使用 android:layout_margin=""
而不是 android:padding=""
。这将在 TextView 中为 textView 的所有方向(顶部、底部、左侧和右侧)创建带有插入值的边距
如果您想要应用特定的边距,您也可以使用这些:
android:layout_marginLeft=""
android:layout_marginTop=""
android:layout_marginRight=""
android:layout_marginBottom=""
关于android - 如何在 Android 上塑造 webview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21885623/
你好 Stackoverflow, 我现在正在编写 API 相当长的一段时间,现在它可以与这些更大的 API 之一一起使用。开始想知道如何塑造这个 API,因为我多次在更大的平台上看到一个大实体(例如
我想问一下如何在android Material Design中创建改变形状的动画。这是我从 Android Material Design 指南中获得的视频。 Material can change
我正在尝试找出适合我想要拟合的模型的正确语法。这是一个时间序列预测问题,我想在将时间序列输入 LSTM 之前使用一些密集层来改进时间序列的表示。 这是我正在使用的虚拟系列: import pandas
我是一名优秀的程序员,十分优秀!