Hello stackoverflow成员。我正在努力实现这一目标:http://imgur.com/dqwOAOf
但由于某种原因,这两个文本不能像这样http://imgur.com/lyYg8Ei采取这些立场 谁能解释我做错了什么? 请原谅我的艺术才华。
我添加了整个xml文件。
这个想法是两个textviews定时器和typegekookt显示在backgroundtypegekookt的中心,均匀分布。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:orientation="vertical"
android:id="@+id/eggContainer"
android:layout_height="wrap_content"
android:padding="15dp">
<ImageView android:id="@+id/eggtimerimage"
android:src="@drawable/eiwit"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:gravity="center_vertical"
/>
<ImageView android:id="@+id/backgroundtypegekookt"
android:src="@drawable/timerwijzer"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
/>
<TextView
android:id="@+id/typegekookt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="zacht"
android:textSize="20sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_alignTop="@+id/divider2"
android:layout_centerHorizontal="true"/>
<TextView
android:id="@+id/timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="10:00"
android:textSize="22sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_centerHorizontal="true"
android:layout_alignBottom="@+id/divider2"
/>
<TextView
style="?android:listSeparatorTextViewStyle"
android:id="@+id/divider1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/eggtimerimage"
android:layout_marginBottom="-30dp"
/>
<TextView
style="?android:listSeparatorTextViewStyle"
android:id="@+id/divider2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignLeft="@+id/backgroundtypegekookt"
android:layout_alignStart="@+id/backgroundtypegekookt"
android:layout_alignRight="@+id/backgroundtypegekookt"
android:layout_alignEnd="@+id/backgroundtypegekookt" />
</RelativeLayout>
答案 0 :(得分:0)
不使用ImageView android:id="@+id/backgroundtypegekookt"
,而是使用具有该背景(android:background="@drawable/timerwijzer"
)的RelativeLayout(或LinearLayout),并将TextViews放入其中
这就是我的意思:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/eggContainer"
android:layout_height="wrap_content"
android:padding="15dp"
>
<ImageView
android:id="@+id/eggtimerimage"
android:src="@drawable/eiwit"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:gravity="center_vertical"
/>
<LinearLayout
android:id="@+id/backgroundtypegekookt"
android:background="@drawable/timerwijzer"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
android:orientation="vertical"
>
<TextView
android:id="@+id/typegekookt"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:text="zacht"
android:textSize="20sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_centerHorizontal="true"
/>
<TextView
android:id="@+id/timer"
android:below="@id/typegekookt"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:text="10:00"
android:textSize="22sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_centerHorizontal="true"
/>
</LinearLayout>
<!-- You can use 2 Views instead of 2 TextViews, more efficiently -->
<!-- Anyway, in your screenshots I only see 1 - I guess you'll have to fix that -->
<TextView
style="?android:listSeparatorTextViewStyle"
android:id="@+id/divider1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="-30dp"
/>
<TextView
style="?android:listSeparatorTextViewStyle"
android:id="@+id/divider2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignLeft="@id/backgroundtypegekookt"
android:layout_alignStart="@id/backgroundtypegekookt"
android:layout_alignRight="@id/backgroundtypegekookt"
android:layout_alignEnd="@id/backgroundtypegekookt"
/>
</RelativeLayout>
我还根据需要将已弃用的fill_parent
修改为match_parent
和@+id
(预期参考)到@id
(参考)。
另请参阅布局中的评论,了解最后两个观点。