android UI元素没有出现

时间:2013-06-18 18:52:01

标签: android android-emulator

我创建了一个简单的Android应用程序,就像谷歌教程中的那个。第一个活动上的按钮从文本字段中获取文本...然后使用在第一个活动中输入的文本加载第二个活动。

我要做的就是在第二个活动中添加一些简单的UI元素。在xml中我添加了一个按钮,我可以在图形xml查看器中完美地看到它,但是当我实际启动应用程序时,屏幕是空的。

在你建议之前......我已经尝试了这两个

<Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@+id/ratingBar1" android:layout_alignLeft="@+id/ratingBar1" android:text="Button" />

和这个

<Button android:id="@+id/button1" android:layout_width="100dp" android:layout_height="50dp" android:layout_above="@+id/ratingBar1" android:layout_alignLeft="@+id/ratingBar1" android:text="Button" />

似乎没有任何区别。

有什么建议吗?

修改

下面的xml:

<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=".SecondScreen" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />



<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="82dp"
    android:text="Button" />

</RelativeLayout>`

编辑2:

package com.example.test;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.NavUtils;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;

public class SecondScreen extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_second_screen);





        // Get the message from the intent
        Intent intent = getIntent();
        String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

        // Create the text view
        TextView textView = new TextView(this);
        textView.setTextSize(40);
        textView.setText(message);

        // Set the text view as the activity layout
        setContentView(textView);








    // Show the Up button in the action bar.
    setupActionBar();
}

/**
 * Set up the {@link android.app.ActionBar}.
 */
private void setupActionBar() {

    getActionBar().setDisplayHomeAsUpEnabled(true);

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.second_screen, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case android.R.id.home:
        // This ID represents the Home or Up button. In the case of this
        // activity, the Up button is shown. Use NavUtils to allow users
        // to navigate up one level in the application structure. For
        // more details, see the Navigation pattern on Android Design:
        //
        // http://developer.android.com/design/patterns/navigation.html#up-vs-back
        //
        NavUtils.navigateUpFromSameTask(this);
        return true;
    }
    return super.onOptionsItemSelected(item);
}

}

4 个答案:

答案 0 :(得分:2)

我正在提交另一个答案,因为我的第一个答案很难回答。使用您的代码,很容易发现问题。

您正在创建一个名为View的新textView,然后将整个活动的布局设置为仅TextView setContentView(textView)。保留它,而不是以这种方式进行文本视图,请参考您在布局中指定的ID。所以做一些像

这样的事情
TextView textBox = (TextView) findViewById(R.id.textView1);
textBox.setTextSize(40);
textBox.setText(message);

解决您的问题。

作为旁注,我不建议使用intent.getStringExtra,而是在第一个活动中使用一些静态方法public static getMessage()来返回您指定的private static String message变量,确定你的第一个活动。在第二个活动中,您可以通过执行String message = Class1Name.getMessage()之类的操作来调用该方法。这些不应该是你问题的根源,因为我不知道你正在做什么的具体细节,我不能肯定地说这样做是否会起作用。但无论如何,我几乎可以保证摆脱setContentView(textView)会使你的按钮正常显示。

答案 1 :(得分:0)

您是否在setContentView(R.layout.your_layout);方法中添加了onCreate(..)

答案 2 :(得分:0)

检查您的布局方向是否垂直,如果仍然没有帮助您将完整的xml发布到此处有人可以在这里

答案 3 :(得分:0)

更多的评论而不是“答案”本身,但可能有两件事。可能是您的仿真器所基于的Android设备具有与XML查看器中的设备不同的像素密度,因此由于marginTop而将您的按钮推离屏幕底部,您可以尝试获取摆脱边缘,看看是否出现。如果这没有帮助,请将您的第二个活动(SecondScreen)代码放上,因为XML看起来应该可以正常工作。