1

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

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

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

 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,“玫瑰”将全屏显示,而布局的其余元素将不会显示。

我特意要求另一种方法,将玫瑰对象添加到布局中,而不会忽略其其余元素。

提前致谢。

4

1 回答 1

1

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

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

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

例子:

active_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>
于 2013-05-18T16:39:27.397 回答