问题标签 [android-constraintlayout]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何在 PercentRelativeLayout 中使用 layout_aspectRatio?
我尝试使用PercentRelativeLayout
.
所以我把这一行放在我的 build.gradle 文件中:compile 'com.android.support:design:23.0.1'
我使用这种布局:
问题:
- Android Studio 警告我:
'layout_height' should be defined
对于ImageView
. - 当我运行我的项目时,我得到了:
Error:(15) No resource identifier found for attribute 'layout_aspectRatio'
。
那么怎么了?
android - 如何根据设备屏幕尺寸,16:9,1:1,3:2,2:1,4:3 将百分比相对布局中的图像视图设置为以下比例
我有一个图像视图来显示图像,我想启用使用以下比例 16:9,1:1,3:2,2:1,4:3 裁剪图像的选项。每个按钮都有一些按钮,因此用户可以通过单击按钮将图像裁剪为以下内容。如何根据具有不同屏幕尺寸的设备执行此操作。
我使用以下代码片段获得了设备屏幕的高度和宽度
我可以使用此代码段将宽度和高度设置为 imageview
但是如何使用百分比相对布局 (16:9,1:1,3:2,2:1,4:3)
谁能帮忙??
android - 如何使用新的 Android 约束布局来减少 View 层次结构
您对如何使用最近在今年 Google I/O 上宣布的新约束布局有任何想法吗?
android - 如何使 ConstraintLayout 使用百分比值?
借助 Android Studio 2.2 的 Preview 1,Google 在其支持库中发布了一个新布局:ConstraintLayout
. 使用 ConstraintLayout 可以更轻松地在 Android Studio 中使用设计工具,但我没有找到使用相对大小(如 LinearLayout 中的百分比或“权重”)的方法。有没有办法根据百分比定义约束?例如,让视图占据屏幕的 40%,在视图之间创建 20% 的边距,将视图的宽度设置为另一个视图宽度的 50%?
android - ConstraintLayout 和 RelativeLayout 的区别
ConstraintLayout
我对和之间的区别感到困惑RelativeLayout
。有人可以告诉我它们之间的确切区别吗?
android - Androind 2.2 Preview 1 - 使用 ConstraintsLayout 与 GuideLine 应用程序崩溃
我正在尝试使用 ContraintsLayout 创建布局。
在我的布局中,我添加了 Horizontal GuideLine
。
但是当我运行应用程序时它会崩溃,如果我删除GuideLine
它就可以了。
我还检查了 APK 并且有一个类java.awt.Rectagle
堆栈跟踪
布局xml文件
android - 是否可以将 ConstraintLayout 放在 ScrollView 中?
所以最近,在 Android Studio 2.2 中,有一个新的 ConstraintLayout 可以让设计变得更容易,但与RelativeLayout
and不同Linearlayout
,我不能使用ScrollView
to 环绕ConstraintLayout
。这可能吗?如果是这样,怎么做?
IE