为什么我的 FrameLayout 结构在 android 版本 7-13 和 14-17 之间有所不同?如果与 android 版本 14-17 一起使用,TableLayout 会向上移动。
布局是我制作具有 2 计时和日期功能的模拟时钟的粗略尝试。我试图上传一张图片,但我没有足够的声誉来上传一张。
什么是 d 补救 4 这个 1?谢谢!!!!!!!!!!
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget34"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TableLayout
android:id="@+id/Table"
android:layout_width="152dp"
android:layout_height="111dp"
android:layout_gravity="center"
android:layout_marginTop="35dp" >
<TableRow
android:id="@+id/Tablerow"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="1" >
<AnalogClock
android:id="@+id/AnalogClock1"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_gravity="left"
android:layout_weight="1"
android:background="#000000" />
<AnalogClock
android:id="@+id/widget35"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_gravity="right"
android:layout_weight="1"
android:background="#000000" />
</TableRow>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_weight="1" >
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginLeft="21dp"
android:layout_weight="1"
android:background="#000000"
android:paddingLeft="2dp"
android:paddingRight="2dp"
android:text="some txt"
android:textAppearance="?android:attr/textAppearanceMedium" />
</TableRow>
</TableLayout>
<AnalogClock
android:id="@+id/AnalogClock01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:dial="@drawable/dialg" />
</FrameLayout>