为什么我的FrameLayout结构在Android版本7-13和14-17之间有所不同?如果与Android版本14-17一起使用,TableLayout会向上移动。
布局是我的原始尝试制作具有2个计时和日期功能的模拟时钟。我试图上传图片,但我没有足够的信誉上传一张。
这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>
答案 0 :(得分:0)
现在,这个布局在所有Android版本中都很稳定。也许我初始布局的问题是TableLayout。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget32"
android:layout_width="280dp"
android:layout_height="280dp"
android:background="@drawable/dial_01" >
<FrameLayout
android:id="@+id/Table"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_marginTop="120dp" >
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<AnalogClock
android:id="@+id/AnalogClock1"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_gravity="left"
android:layout_weight="1"
android:hand_hour="@drawable/invictus"
android:hand_minute="@drawable/hourc2" />
<AnalogClock
android:id="@+id/widget35"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_gravity="right"
android:layout_weight="1"
android:hand_hour="@drawable/hourc2"
android:hand_minute="@drawable/invictus" />
</LinearLayout>
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/background"
android:paddingLeft="2dp"
android:paddingRight="2dp"
android:text="Wed 01"
android:textAppearance="?android:attr/textAppearanceMedium" />
</FrameLayout>
<AnalogClock
android:id="@+id/AnalogClock01"
android:layout_width="280dp"
android:layout_height="280dp" />
&LT; /&的FrameLayout GT;