所以我正在开发Android应用。现在我尝试进入res-menu-layout-activity_main来设计虚拟设备。但是当我打开它时,id不会给我显示虚拟设备。有什么想法需要做什么?下面是它的截图。
这是它的XML文件。它看起来有点混乱和混乱。通常,我只想让所有四个字段左对齐,列为viewLats,view4,viewLongs,view1。
<RelativeLayout 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.oldimagereveal.MainActivity" >
<TextView
android:id="@+id/textLats"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_marginTop="29dp"
android:linksClickable="true"
android:longClickable="true"
android:text=""
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/textLongs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView4"
android:layout_marginLeft="33dp"
android:layout_marginTop="33dp"
android:layout_toRightOf="@+id/textView1"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textLongs"
android:layout_marginTop="103dp"
android:text="Longitude"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textLongs"
android:layout_alignTop="@+id/textLats"
android:text="Latitude"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
答案 0 :(得分:0)
因为我不知道如何解决这个问题。我转到Layout XML文件并删除了我之前设置的所有Textview字段。现在它给了原始屏幕,我可以回去重新设置它。