我设计了一个画布,现在我想将它包含到 xml 文件中,我该怎么做?
我的 MainActivity 文件如下:
public class MainActivity extends Activity {
CircularSeekBar circularSeekbar;
private AudioManager audioManager = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
supe`enter code here`r.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tx =(TextView) findViewById(R.id.mytext);
circularSeekbar =(CircularSeekBar) findViewById(R.id.mycanvas);
audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
circularSeekbar = new CircularSeekBar(this);
-------------------
}
我的 xml 文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rel">
<TextView
android:id="@+id/mytext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Value"
/>
<com.example.semicirseek.MyCanvas
android:id="@+id/mycanvas"
android:layout_width="wrap_content"
android:layout_height="90dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="88dp"
android:max="255"
android:progress="0" />
</RelativeLayout>
问题是当我运行应用程序时画布出现在屏幕上