0

嗨,

我是 Android 开发的新手,并阅读书籍以熟悉它。该代码也在一本书中,但到目前为止还不起作用。代码很简单:这是布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView 
    android:id="@+id/text"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="Hello"/>

<Button 
    android:id="@+id/trigger"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Press Me"/>

</LinearLayout>

这是Java代码:

private int buttonPress = 0;
TextView mButtonLabel;

private long mStartTime = 0L;
TextView mTimeLabel;

private Handler mHandler = new Handler();

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

    if(mStartTime == 0L) {
        mStartTime = SystemClock.uptimeMillis();
        mHandler.removeCallbacks(mUpdateTimeTask);
        mHandler.postDelayed(mUpdateTimeTask, 100);
    }

    mTimeLabel = (TextView)findViewById(R.id.text);
    mButtonLabel = (TextView)findViewById(R.id.trigger);

    Button startButton = (Button)findViewById(R.id.trigger);

    startButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            mButtonLabel.setText("Megnyomva: " + ++buttonPress + " alkalommal");
        }
    });
}

private Runnable mUpdateTimeTask = new Runnable() {
    public void run() {
        final long start = mStartTime;
        long milis = SystemClock.uptimeMillis() - start;
        int seconds = (int) (milis/1000);
        int minutes = (seconds/60);
        seconds = seconds % 60;

        mTimeLabel.setText("" + minutes + ":" + String.format("%02d", seconds));
        mHandler.postDelayed(this, 200);
    }
};

@Override
protected void onPause() {
    mHandler.removeCallbacks(mUpdateTimeTask);
    super.onPause();
}

@Override
protected void onResume() {
    super.onResume();
    mHandler.postDelayed(mUpdateTimeTask, 100);
}

我的问题是,该按钮以某种方式不可见。有什么建议么?

谢谢,戴夫。

4

2 回答 2

1

<LinearLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:orientation="vertical" >

<TextView 
 android:id="@+id/text"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:text="Hello"/>

<Button 
 android:id="@+id/trigger"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="Press Me"/>

</LinearLayout>

<RelativeLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:orientation="vertical" >

<TextView 
 android:id="@+id/text"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:text="Hello"/>

<Button 
 android:id="@+id/trigger"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="Press Me"/>

</RelativeLayout >
于 2013-11-13T07:39:11.360 回答
0

尝试改变

<TextView 
    android:id="@+id/text"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="Hello"/>

<TextView 
    android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello"/>

这将TextView只提供所需的空间,仅此而已。

于 2013-11-13T07:29:43.000 回答