Compare commits
	
		
			3 Commits
		
	
	
		
			a3fe0d4a2e
			...
			fc6ff2e5cc
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| fc6ff2e5cc | |||
| 4cd8641ec2 | |||
| 15ff7fa1cf | 
@@ -8,11 +8,9 @@
 | 
			
		||||
        android:supportsRtl="true"
 | 
			
		||||
        android:theme="@style/InfiniteTimer"
 | 
			
		||||
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize">
 | 
			
		||||
        <activity android:name=".MainActivity"
 | 
			
		||||
            android:exported="true">
 | 
			
		||||
        <activity android:name=".MainActivity" android:exported="true">
 | 
			
		||||
            <intent-filter>
 | 
			
		||||
                <action android:name="android.intent.action.MAIN" />
 | 
			
		||||
 | 
			
		||||
                <category android:name="android.intent.category.LAUNCHER" />
 | 
			
		||||
            </intent-filter>
 | 
			
		||||
        </activity>
 | 
			
		||||
 
 | 
			
		||||
@@ -8,6 +8,7 @@ import android.net.Uri;
 | 
			
		||||
import android.os.Bundle;
 | 
			
		||||
import android.os.Handler;
 | 
			
		||||
import android.os.Message;
 | 
			
		||||
import android.support.v7.app.ActionBar;
 | 
			
		||||
import android.support.v7.app.AppCompatActivity;
 | 
			
		||||
import android.util.Log;
 | 
			
		||||
import android.view.View;
 | 
			
		||||
@@ -493,6 +494,9 @@ public class MainActivity extends AppCompatActivity {
 | 
			
		||||
        sharedPreferences.edit().putBoolean(keyServiceRunning, false).apply();
 | 
			
		||||
 | 
			
		||||
        recoverScreen();
 | 
			
		||||
 | 
			
		||||
        ActionBar actionBar = getSupportActionBar();
 | 
			
		||||
        actionBar.hide();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private void flipInputTexts() {
 | 
			
		||||
 
 | 
			
		||||
@@ -10,11 +10,23 @@
 | 
			
		||||
    android:paddingTop="@dimen/activity_vertical_margin"
 | 
			
		||||
    tools:context="com.hyperling.apps.infinitetimer.MainActivity">
 | 
			
		||||
 | 
			
		||||
    <TextView
 | 
			
		||||
        android:id="@+id/tvAppName"
 | 
			
		||||
        android:layout_width="match_parent"
 | 
			
		||||
        android:layout_height="wrap_content"
 | 
			
		||||
        android:text="@string/appName"
 | 
			
		||||
        android:layout_alignParentTop="true"
 | 
			
		||||
        android:background="@color/colorPrimaryDark"
 | 
			
		||||
        android:layout_marginTop="10dp"
 | 
			
		||||
        android:padding="8dp"
 | 
			
		||||
        android:textSize="32sp"
 | 
			
		||||
        android:textStyle="bold"/>
 | 
			
		||||
 | 
			
		||||
    <TextView
 | 
			
		||||
        android:id="@+id/tvUpperLabel"
 | 
			
		||||
        android:layout_width="wrap_content"
 | 
			
		||||
        android:layout_height="wrap_content"
 | 
			
		||||
        android:layout_alignParentTop="true"
 | 
			
		||||
        android:layout_below="@+id/tvAppName"
 | 
			
		||||
        android:layout_centerHorizontal="true"
 | 
			
		||||
        android:layout_margin="4dp"
 | 
			
		||||
        android:textSize="18sp"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<resources>
 | 
			
		||||
    <!-- App details -->
 | 
			
		||||
    <string name="appName">Infinite Timer</string>
 | 
			
		||||
    <string name="appVersion">Test v201610291024</string>
 | 
			
		||||
    <string name="appVersion">Test v20250711</string>
 | 
			
		||||
    <string name="TAG">com.hyperling.apps.infinitetimer</string>
 | 
			
		||||
 | 
			
		||||
    <!-- Keys -->
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user