我对Android工作室来说相当新,所以很抱歉,如果这可能是一个愚蠢的问题。 我试图在屏幕顶部放两个按钮。我希望他们像这张图片一样位于左上角和右上角。
然而,这就是他们的样子。
我不希望屏幕顶部和两个按钮之间有任何空间。这是我的代码.. 的LinearLayout
<LinearLayout
android:layout_marginTop="0dp"
android:id="@+id/LinearLayout02"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:id="@+id/settingsBTN"
android:layout_weight="1"
android:src="@drawable/HomeBTNunpressed"/>
<View android:layout_width="3dp"
android:layout_height="50dp"
android:background="@android:color/black"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:id="@+id/homeBTN"
android:layout_weight="1"
android:src="@drawable/settingsBTNunpressed"/>
</LinearLayout>
答案 0 :(得分:0)
首先在父级中不要使用fillParent(Deprecated)而是使用MatchParent。
其次,如果使用线性布局并为视图指定权重,在您的情况下,您希望平均分配空间,则指定宽度0dp和权重1到权重2和权重2。
第三步使用包含中心ImageView的任何布局,并将背景颜色指定为您想要的任何颜色
您正在使用图像按钮,图像的宽高比会调整大小,因此不适合。
答案 1 :(得分:0)
实际上你正在使用图像按钮,因此边框实际上是按钮。而不是使用图像按钮,你可以使用图像视图,并使其可以在你的代码中点击。我在这里使用了我自己的图像,但你可以使用自己的图像你的xml。
<LinearLayout
android:id="@+id/LinearLayout02"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/settingsBTN"
android:layout_weight=".5"
android:layout_marginTop="0dp"
android:background="#B6B6B6"
android:src="@drawable/username_icon"/>
<View android:layout_width="3dp"
android:layout_height="50dp"
android:background="@android:color/black"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_weight=".5"
android:layout_marginTop="0dp"
android:background="#B6B6B6"
android:src="@drawable/username_icon"/>
</LinearLayout>