在eclipse android中运行GUI

时间:2015-12-30 16:08:37

标签: java android eclipse android-relativelayout

我第一次在Android项目中工作,所以我为应用程序创建了一个简单的GUI但是现在我完成了我想对GUI进行一些更改但是如果一个对象出来就很麻烦应用程序没有运行的地方,我看不出问题出在哪里。无论如何在eclipse环境中只检查GUI而不加载Java代码?我的意思是,Java代码没问题,问题是在XML文件中放置对象,需要花费很多时间才能知道。我分享XML文件的结构。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient"
android:gravity="top"
tools:context=".MainActivity" >

<TextView
    android:id="@+id/txtSongName"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:text="Song Name"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<ImageView
    android:id="@+id/albumCover"
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:layout_centerInParent="true"
    android:layout_margin="30dp"
    android:padding="0dp"
    android:src="@drawable/music" />

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/albumCover"
    android:background="@drawable/gradient"
    android:gravity="center_horizontal"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/btnPrev"
        android:layout_width="wrap_content"
        android:layout_height="42dp"
        android:background="@drawable/back"
        android:height="64dp"
        android:text="Prev"
        android:textSize="0sp"
        android:width="16dp" />

    <Button
        android:id="@+id/btnNext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/forward"
        android:height="16dp"
        android:text="Next"
        android:textSize="0sp"
        android:width="16dp" />

    <Button
        android:id="@+id/btnPlay"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/play"
        android:text="Play"
        android:textSize="0sp"
        android:width="16dp" />

    <Button
        android:id="@+id/btnStop"
        android:layout_width="44dp"
        android:layout_height="wrap_content"
        android:background="@drawable/stop"
        android:text="Stop"
        android:textSize="0sp"
        android:width="64dp" />

    <Button
        android:id="@+id/btnReplay"
        android:layout_width="49dp"
        android:layout_height="46dp"
        android:background="@drawable/replay_off"
        android:text="Replay"
        android:textSize="0sp" />

    <Button
        android1:id="@+id/btnShuffle"
        android1:layout_width="45dp"
        android1:layout_height="45dp"
        android1:background="@drawable/shuffle_off"
        android1:text="Shuffle"
        android1:textSize="0sp" />

</LinearLayout>

<SeekBar
    android1:id="@+id/seekBar"
    android1:layout_width="match_parent"
    android1:layout_height="wrap_content"
    android1:layout_above="@+id/linearLayout1"
    android1:layout_alignParentLeft="true" />

<TextView
    android1:id="@+id/songCurrentDuration"
    android1:layout_width="wrap_content"
    android1:layout_height="wrap_content"
    android1:layout_above="@+id/seekBar"
    android1:layout_alignLeft="@+id/albumCover"
    android1:text="TextView" />

<TextView
    android1:id="@+id/songTotalDuration"
    android1:layout_width="wrap_content"
    android1:layout_height="wrap_content"
    android1:layout_alignBottom="@+id/albumCover"
    android1:layout_alignRight="@+id/albumCover"
    android1:text="TextView" />

</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

Right clickPackage Explorer视图中的一个布局文件上,然后点击

Open With -> Android Layout Editor

答案 1 :(得分:0)

错误是您使用相对布局作为父布局,并且在其所有子布局中,您从未声明窗口小部件之间的相对位置。这是在两个文本视图或按钮之间。

请相应更新。