我正在试用Finger Paint API演示,我正在尝试添加按钮。我已经包括了
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<view
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.triopsys.imosandroid.ViewControllers.SignatureViewController$MyView" />
</LinearLayout>
在我的布局xml中,但我无法在此视图的顶部或底部添加按钮;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/buttonCancel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Cancel" >
</Button>
<Button
android:id="@+id/buttonOk"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="OK" >
</Button>
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<view
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.triopsys.imosandroid.ViewControllers.SignatureViewController$MyView" />
</LinearLayout>
</LinearLayout>
但这不起作用。
答案 0 :(得分:0)
尝试添加
android:orientation="horizontal"
到布局包装按钮。 IIRC默认是垂直的,所以它堆叠2个按钮,宽度为零,并且彼此叠加。
答案 1 :(得分:0)
如果您没有收到任何错误:
然后我猜问题是Buttons的宽度值。将其更改为wrap_content
答案 2 :(得分:0)
究竟什么不起作用?我尝试了这种布局,它编译并正确显示。
如果“不起作用”表示“我的自定义视图不占用整个屏幕”,则删除linearLayout2
。在任何情况下,它都是多余的,可能会被删除。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/buttonCancel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Cancel" >
</Button>
<Button
android:id="@+id/buttonOk"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="OK" >
</Button>
</LinearLayout>
<view
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.triopsys.imosandroid.ViewControllers.SignatureViewController$MyView" />
</LinearLayout>