我正在尝试通过xml实现此功能,但尝试失败次数过多。我已经尝试创建两个按钮并通过ViewId调用它们,但之后它们不会显示在UI上,因为它们是自定义按钮。我该怎么办呢?
LinearLayout ll = new LinearLayout(this);
recButton = new CustomRecordButton(this);
ll.addView(recButton,
new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT,0));
playButton = new CustomPlayButton(this);
ll.addView(playButton, new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT,0));
setContentView(ll);
答案 0 :(得分:1)
这是一种可能的方式
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto
android:layout_width="fill_parent"
android:layout_height="48dp"
android:orientation="horizontal" >
<package.to.my.CustomPlayButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<package.to.my.CustomPlayButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>