1

Google チュートリアルのような単純な Android アプリを作成しました。最初のアクティビティのボタンはテキスト フィールドからテキストを取得し、最初のアクティビティに入力されたテキストを使用して 2 番目のアクティビティを読み込みます。

私がやろうとしているのは、いくつかの単純な UI 要素を 2 番目のアクティビティに追加することだけです。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

4 に答える 4

0

それ自体は「答え」というよりもコメントですが、2つのことがあります。エミュレーターのベースとなっている Android デバイスのピクセル密度が XML ビューアーのものとは異なるため、ボタンが原因で画面の下部から押し出されているmarginTop可能性があります。余白を取り除いてみることができます。それが表示されるかどうかを確認します。それでも問題が解決しない場合は、2 番目のアクティビティの ( SecondScreen) コードを追加してください。XML は問題なく動作しているようです。

于 2013-06-19T16:49:35.213 に答える
0

メソッドに追加setContentView(R.layout.your_layout);しましたonCreate(..)か?

于 2013-06-18T18:54:55.020 に答える