作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我布局的相对布局部分:
<RelativeLayout
android:id="@+id/headLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/headbg"
android:orientation="horizontal" >
<TextView
android:id="@+id/head2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingLeft="@dimen/d10dp"
android:text="@string/archive"
android:textColor="@color/white"
android:textSize="@dimen/d20sp" />
<ImageView
android:id="@+id/moreBtn"
android:layout_width="@dimen/d50sp"
android:layout_height="@dimen/d30sp"
android:layout_alignParentEnd="true"
android:layout_gravity="center_vertical"
android:paddingRight="@dimen/d10dp"
android:scaleType="centerInside"
android:src="@drawable/show_btn" />
</RelativeLayout>
在具有 api 19 的 avd 上,它可以完美运行。 Textview 在相对布局的左端,而 ImageView 在右边。但是在具有 api 14 的 avd 上,两者都在左端。我是否遗漏了一些让 alighparentend 工作的标签,或者它只是在 api 14 上不起作用?
最佳答案
原因很简单,因为根据文档,android:layout_alignParentEnd
是在 Api 级别 17 中引入的。
来源:
http://developer.android.com/reference/android/R.attr.html#layout_alignParentEnd
关于android:layout_alignParentEnd 不适用于 API 14,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23924639/
我目前正致力于通过降低所需的 SDK 版本来使 Android 应用与更多设备兼容。对于通知等未实现的功能,我已经能够使用 Android 支持库轻松解决所有问题。 但是,在布局方面,我遇到了一些不确
这是我布局的相对布局部分: 在具有 api 19 的 avd 上,它可以完美运行。 Textview 在相对布局的左端,而 ImageView 在右边。但是在具有 api 14
尝试运行 https://github.com/ParsePlatform/AnyWall 时出现此错误在 Eclipse 中 描述资源路径位置类型错误:在包“android”activity_pos
我是一名优秀的程序员,十分优秀!