作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试以编程方式更改我的分隔线垂直偏差,我尝试了此 how to MODIFY a constraint layout programmatically? ,但没有一个解决方案对我有用。当我在我的分隔器上尝试它时,整个应用程序正在重置,并且想要保持在 2 个 Activity 中。我应该怎么办 ?如果这会改变任何事情,还有其他几个分隔器连接到我试图移动的分隔器。
分隔符 xml:
<View
android:id="@+id/divider2"
android:layout_width="15dp"
android:layout_height="15dp"
android:background="#48B130"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/divider" />
第二个分隔线附加到第一个分隔线:
<View
android:id="@+id/divider3"
android:layout_width="15dp"
android:layout_height="15dp"
android:layout_marginTop="2dp"
android:background="#48B130"
app:layout_constraintEnd_toEndOf="@+id/divider2"
app:layout_constraintStart_toStartOf="@+id/divider2"
app:layout_constraintTop_toBottomOf="@+id/divider2" />
第二个 Activity 代码(空):
public class GRA extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_gr);
}
最佳答案
也许,您应该使用您的设置创建一个新的 LayoutParams 并将其应用于该 View 。
关于java - 如何以编程方式更改分频器偏差,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56133011/
我是一名优秀的程序员,十分优秀!