概述
我想添加视图&以编程方式旋转90度,但是我无法确定如何正确设置其尺寸。在Android中旋转90度后调整宽度和高度以进行查看Android
这是我的占位符:
android:layout_width="40dp"
android:layout_height="match_parent"
android:id="@+id/placeholder"
android:orientation="vertical"
android:background="@color/green"
android:layout_weight="1">
这是我的代码看起来像:
FrameLayout placeholderView = (FrameLayout) findViewById(R.id.placeholder);
View myView = new View(getApplicationContext());
myView.setBackgroundColor(Color.RED);
myView.setRotation(90);
FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
myView.setLayoutParams(layoutParams);
placeholderView.addView(myView);
的结果是,无论是宽度&高度得到相同的值,这样的观点看起来像此:
虽然我希望它扩展到其父母的整个身高。
2016-04-25
Tamir
+0
下面的代码尝试请了投票谢谢:) –
最后
以上就是鲤鱼含羞草为你收集整理的android framelayout 高度,在Android中旋转90度后调整宽度和高度以进行查看Android的全部内容,希望文章能够帮你解决android framelayout 高度,在Android中旋转90度后调整宽度和高度以进行查看Android所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复