<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".TimerHandlerActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/startStopButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_margin="10dp"
android:onClick="onClickStartStop"
android:text="@string/start" />
<Button
android:id="@+id/pauseResumeButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_margin="10dp"
android:onClick="onClickPauseResume"
android:text="@string/pause" />
</LinearLayout>
<TextView
android:id="@+id/elapsedTimeLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/elapsedTime"
android:textSize="24dp"
android:layout_margin="50dp"/>
<TextView
android:id="@+id/elapsedTimeText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/zero"
android:textSize="30dp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_margin="50dp"/>
</LinearLayout>
Dosyayı İndir