我正在使用带导航抽屉的Android应用。我在HomeFragment.xml
中使用FrameLayout。在框架布局中,我想使用3个文本视图,并希望垂直和水平对齐,以便对齐适用于所有屏幕尺寸。有人能帮忙吗?
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.mgdetector.HomeFragment">
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/absolute_strength"
android:layout_marginTop="50dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:textStyle="bold"
android:textSize="@dimen/textsize"
/>
<TextView
android:text=""
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/current_location_latitude"
android:layout_marginTop="150dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:textStyle="bold"
android:textSize="@dimen/textsize"
/>
<TextView
android:text=""
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/current_location_longitude"
android:layout_marginTop="250dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:textStyle="bold"
android:textSize="@dimen/textsize"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:id="@+id/stopButton"
android:text="WARNING"
android:visibility="gone"
/>
目前我正在使用
android:layout_marginTop="250dp" // with a difference of 100dp for TextView
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
但我不确定这是否适用于不同手机的屏幕尺寸。
答案 0 :(得分:0)