gpt4 book ai didi

java - 设置内容 View 层次结构

转载 作者:行者123 更新时间:2023-11-30 03:36:05 24 4
gpt4 key购买 nike

我正在开发一个实现简单指南针的应用。

我在扩展 ImageView 的类 (Rose.java) 中创建和操作指南针本身。

在我的主要 Activity 中,我想将玫瑰对象添加到布局中,并且我有这段代码

 public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
sensor = sensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION);

rose = new Rose (this);


setContentView(rose);
}

如您所知,事实是,通过使用 setContentView,“玫瑰”将全屏显示,布局的其余元素将不会显示。

我特别要求在不忽略其其余元素的情况下将玫瑰对象添加到布局中的替代方法。

提前致谢。

最佳答案

你可以在 xml 中分配 LinearLayout 的宽度和高度。

在您的 xml 文件中定义一个 LinearLayout 并定义您选择的宽度和高度。将布局放在您喜欢的位置。将自定义view的内容添加到LinearLayout

   setContentView(R.id.activity_main);
LinearLayout ll = (LinearLayout) findViewById(R.id.linearlayout);
rose = new Rose(this);
ll.addView(rose);

例子:

actiivty_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
// Other views like textview's and button above linear layout

<LinearLayout
android:layout_width="40dp" // mention the width of you choice
android:layout_height="40dp" // // mention the height of you choice
android:layout_above="@+id/button1"
android:layout_alignParentRight="true"
android:id="@+id/linearlayout"
>
</LinearLayout>
// other views below linear layout
</RelativeLayout>

关于java - 设置内容 View 层次结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16626608/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com