diff options
Diffstat (limited to 'app')
35 files changed, 974 insertions, 0 deletions
diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build
\ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..d784c17 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,33 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 29 + + defaultConfig { + applicationId "com.javispedro.autobluetether" + minSdkVersion 23 + targetSdkVersion 29 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + implementation fileTree(dir: "libs", include: ["*.jar"]) + implementation 'androidx.appcompat:appcompat:1.1.0' + implementation 'androidx.constraintlayout:constraintlayout:1.1.3' + implementation 'androidx.legacy:legacy-support-v4:1.0.0' + implementation 'androidx.recyclerview:recyclerview:1.1.0' + testImplementation 'junit:junit:4.12' + androidTestImplementation 'androidx.test.ext:junit:1.1.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' +}
\ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile
\ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..8ab94ac --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.javispedro.autobluetether"> + + <uses-permission android:name="android.permission.BLUETOOTH"/> + <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> + <uses-permission android:name="android.permission.WRITE_SETTINGS"/> + + <application + android:allowBackup="true" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/ic_launcher_round" + android:supportsRtl="true" + android:theme="@style/AppTheme"> + + <receiver android:name=".BtConnectReceiver" android:enabled="true" android:exported="true"> + <intent-filter> + <action android:name="android.bluetooth.device.action.ACL_CONNECTED" /> + </intent-filter> + </receiver> + + <activity android:name=".MainActivity"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest>
\ No newline at end of file diff --git a/app/src/main/java/com/javispedro/autobluetether/BtConnectReceiver.java b/app/src/main/java/com/javispedro/autobluetether/BtConnectReceiver.java new file mode 100644 index 0000000..680f4fc --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/BtConnectReceiver.java @@ -0,0 +1,46 @@ +package com.javispedro.autobluetether; + +import android.bluetooth.BluetoothDevice; +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.content.SharedPreferences; +import android.preference.PreferenceManager; +import android.util.Log; + +import java.util.Set; + +public class BtConnectReceiver extends BroadcastReceiver { + private static final String TAG = "BtConnectReceiver"; + + private boolean isDeviceEnabled(Context context, BluetoothDevice device) { + SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); + Set<String> enabledAddresses = prefs.getStringSet(context.getString(R.string.prefs_key_device_list), null); + if (enabledAddresses == null) return false; + Log.d(TAG, "enabled devices in prefs: " + enabledAddresses); + return enabledAddresses.contains(device.getAddress()); + } + + @Override + public void onReceive(Context context, Intent intent) { + final String action = intent.getAction(); + if (action == null) return; + + if (action.equals(BluetoothDevice.ACTION_ACL_CONNECTED)) { + BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); + if (device == null) return; + + Log.d(TAG, "ACL connected: " + device.getName()); + + if (isDeviceEnabled(context, device)) { + Log.d(TAG, "trying to enable tethering"); + try { + new BtTetherEnabler(context).startTethering(); + } catch (BtTetherEnabler.EnableException e) { + e.printStackTrace(); + Log.e(TAG, "Can't enable tethering: " + e.getMessage()); + } + } + } + } +} diff --git a/app/src/main/java/com/javispedro/autobluetether/BtDeviceEnabledSetAdapter.java b/app/src/main/java/com/javispedro/autobluetether/BtDeviceEnabledSetAdapter.java new file mode 100644 index 0000000..7d2c8fc --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/BtDeviceEnabledSetAdapter.java @@ -0,0 +1,54 @@ +package com.javispedro.autobluetether; + +import android.bluetooth.BluetoothDevice; +import android.content.SharedPreferences; +import android.util.ArraySet; +import android.util.Log; + +import java.util.Set; + +public class BtDeviceEnabledSetAdapter { + private final static String TAG = "BtDeviceEnabledSetAd"; + + private final SharedPreferences mPrefs; + private final String mPrefsKey; + private final ArraySet<String> mSet = new ArraySet<>(); + + public BtDeviceEnabledSetAdapter(SharedPreferences prefs, String key) { + mPrefs = prefs; + mPrefsKey = key; + + readPrefs(); + } + + public boolean contains(BluetoothDevice device) { + return mSet.contains(device.getAddress()); + } + + public void set(BluetoothDevice device, boolean enabled) { + String address = device.getAddress(); + boolean currently = mSet.contains(address); + if (enabled && !currently) { + mSet.add(address); + savePrefs(); + } else if (currently && !enabled) { + mSet.remove(address); + savePrefs(); + } + } + + private void readPrefs() { + mSet.clear(); + Set<String> prefsSet = mPrefs.getStringSet(mPrefsKey, null); + if (prefsSet != null) { + mSet.addAll(prefsSet); + } + } + + private void savePrefs() { + SharedPreferences.Editor editor = mPrefs.edit(); + editor.putStringSet(mPrefsKey, mSet); + editor.apply(); + Log.d(TAG, "saved " + mPrefsKey + ":" + mSet); + } +} diff --git a/app/src/main/java/com/javispedro/autobluetether/BtDeviceRecyclerViewAdapter.java b/app/src/main/java/com/javispedro/autobluetether/BtDeviceRecyclerViewAdapter.java new file mode 100644 index 0000000..4515a95 --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/BtDeviceRecyclerViewAdapter.java @@ -0,0 +1,96 @@ +package com.javispedro.autobluetether; + +import android.bluetooth.BluetoothDevice; +import android.util.Log; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CheckBox; +import android.widget.CompoundButton; +import android.widget.TextView; + +import androidx.annotation.NonNull; +import androidx.recyclerview.widget.RecyclerView; + +import java.util.ArrayList; +import java.util.List; + +/** + * {@link RecyclerView.Adapter} that can display a list of {@link BluetoothDevice}, + * checkboxes show whether the device is in "enabled set" or not + */ +public class BtDeviceRecyclerViewAdapter extends RecyclerView.Adapter<BtDeviceRecyclerViewAdapter.ViewHolder> { + private final static String TAG = "BtDeviceRecyclerViewAd"; + + private List<BluetoothDevice> mValues = new ArrayList<>(); + private BtDeviceEnabledSetAdapter mEnabledAdapter; + + public void setValues(@NonNull List<BluetoothDevice> values) { + mValues = values; + Log.d(TAG, "values size:" + values.size()); + notifyDataSetChanged(); + } + + public void setBtDeviceEnabledSetAdapter(@NonNull BtDeviceEnabledSetAdapter adapter) { + mEnabledAdapter = adapter; + notifyDataSetChanged(); + } + + @NonNull + @Override + public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { + View view = LayoutInflater.from(parent.getContext()) + .inflate(R.layout.fragment_device, parent, false); + return new ViewHolder(view); + } + + @Override + public void onBindViewHolder(final ViewHolder holder, int position) { + holder.setItem(mValues.get(position)); + } + + @Override + public int getItemCount() { + return mValues.size(); + } + + public class ViewHolder extends RecyclerView.ViewHolder { + private final View mView; + private final TextView mNameView; + private final TextView mAddressView; + private final CheckBox mCheckBox; + private BluetoothDevice mItem; + + public ViewHolder(View view) { + super(view); + mView = view; + mNameView = view.findViewById(R.id.name); + mAddressView = view.findViewById(R.id.address); + mCheckBox = view.findViewById(R.id.checked); + mCheckBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { + @Override + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + if (mEnabledAdapter != null && mItem != null) { + Log.d(TAG, "onCheckedChanged " + mItem.getName() + " " + isChecked); + mEnabledAdapter.set(mItem, isChecked); + } + } + }); + } + + public void setItem(BluetoothDevice device) { + mItem = device; + mNameView.setText(device.getName()); + mAddressView.setText(device.getAddress()); + if (mEnabledAdapter != null) { + mCheckBox.setChecked(mEnabledAdapter.contains(device)); + } + } + + @NonNull + @Override + public String toString() { + return super.toString() + " [" + mItem.getAddress() + "]"; + } + } +}
\ No newline at end of file diff --git a/app/src/main/java/com/javispedro/autobluetether/BtPanWrapper.java b/app/src/main/java/com/javispedro/autobluetether/BtPanWrapper.java new file mode 100644 index 0000000..40cd84a --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/BtPanWrapper.java @@ -0,0 +1,39 @@ +package com.javispedro.autobluetether; + +import android.bluetooth.BluetoothProfile; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; + +public class BtPanWrapper { + private static final String CLASS_NAME = "android.bluetooth.BluetoothPan"; + public static final int PROFILE_ID = 5 /*BluetoothProfile.PAN*/; + private final BluetoothProfile p; + + public BtPanWrapper(BluetoothProfile pan) { + p = pan; + } + + private Object invoke(String methodName, Class[] parameterTypes, Object[] args) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException, ClassNotFoundException { + Class c = Class.forName(CLASS_NAME); + Method m = c.getDeclaredMethod(methodName, parameterTypes); + return m.invoke(this.p, args); + } + + public boolean isTetheringOn() { + try { + return (boolean) invoke("isTetheringOn", null, null); + } catch (Exception e) { + e.printStackTrace(); + return false; + } + } + + public void setBluetoothTethering(boolean on) { + try { + invoke("setBluetoothTethering", new Class[] {Boolean.TYPE}, new Object[] {on}); + } catch (Exception e) { + e.printStackTrace(); + } + } +} diff --git a/app/src/main/java/com/javispedro/autobluetether/BtTetherEnabler.java b/app/src/main/java/com/javispedro/autobluetether/BtTetherEnabler.java new file mode 100644 index 0000000..bae42c8 --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/BtTetherEnabler.java @@ -0,0 +1,53 @@ +package com.javispedro.autobluetether; + +import android.bluetooth.BluetoothAdapter; +import android.bluetooth.BluetoothProfile; +import android.content.Context; +import android.content.ContextWrapper; +import android.util.Log; + +public class BtTetherEnabler extends ContextWrapper { + private final static String TAG = "BtTetherEnabler"; + + public BtTetherEnabler(Context context) { + super(context); + } + + public static class EnableException extends Exception { + public EnableException(String message, Throwable cause) { + super(message, cause); + } + + public EnableException(String message) { + super(message); + } + } + + public void startTethering() throws EnableException { + final BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); + if (adapter == null) { + Log.e(TAG, "no BT adapter"); + throw new EnableException("No Bluetooth adapter"); + } + + adapter.getProfileProxy(getBaseContext(), new BluetoothProfile.ServiceListener() { + public void onServiceConnected(int profile, BluetoothProfile proxy) { + Log.d(TAG, "onServiceConnected"); + final BtPanWrapper wrapper = new BtPanWrapper(proxy); + boolean is_on = wrapper.isTetheringOn(); + Log.d(TAG, "isTetheringOn: " + is_on); + if (!is_on) { + Log.d(TAG, "trying to turn on"); + wrapper.setBluetoothTethering(true); + } + adapter.closeProfileProxy(profile, proxy); + } + + public void onServiceDisconnected(int profile) { + Log.d(TAG, "onServiceDisconnected"); + } + }, BtPanWrapper.PROFILE_ID); + } + + +} diff --git a/app/src/main/java/com/javispedro/autobluetether/DeviceFragment.java b/app/src/main/java/com/javispedro/autobluetether/DeviceFragment.java new file mode 100644 index 0000000..2f8099c --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/DeviceFragment.java @@ -0,0 +1,92 @@ +package com.javispedro.autobluetether; + +import android.bluetooth.BluetoothAdapter; +import android.bluetooth.BluetoothDevice; +import android.content.Context; +import android.content.SharedPreferences; +import android.os.Bundle; +import android.preference.PreferenceManager; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; + +import androidx.fragment.app.Fragment; +import androidx.recyclerview.widget.GridLayoutManager; +import androidx.recyclerview.widget.LinearLayoutManager; +import androidx.recyclerview.widget.RecyclerView; + +import java.util.ArrayList; + +/** + * A fragment representing a list of Items. + */ +public class DeviceFragment extends Fragment { + private RecyclerView mRecyclerView; + private BtDeviceRecyclerViewAdapter mAdapter; + private BtDeviceEnabledSetAdapter mEnabledAdapter; + + private static final String ARG_COLUMN_COUNT = "column-count"; + private int mColumnCount = 1; + + /** + * Mandatory empty constructor for the fragment manager to instantiate the + * fragment (e.g. upon screen orientation changes). + */ + public DeviceFragment() { + } + + @SuppressWarnings("unused") + public static DeviceFragment newInstance(int columnCount) { + DeviceFragment fragment = new DeviceFragment(); + Bundle args = new Bundle(); + args.putInt(ARG_COLUMN_COUNT, columnCount); + fragment.setArguments(args); + return fragment; + } + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + if (getArguments() != null) { + mColumnCount = getArguments().getInt(ARG_COLUMN_COUNT); + } + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + View view = inflater.inflate(R.layout.fragment_device_list, container, false); + mRecyclerView = (RecyclerView) view; + + Context context = view.getContext(); + + if (mColumnCount <= 1) { + mRecyclerView.setLayoutManager(new LinearLayoutManager(context)); + } else { + mRecyclerView.setLayoutManager(new GridLayoutManager(context, mColumnCount)); + } + + SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); + mEnabledAdapter = new BtDeviceEnabledSetAdapter(prefs, getString(R.string.prefs_key_device_list)); + + mAdapter = new BtDeviceRecyclerViewAdapter(); + mAdapter.setBtDeviceEnabledSetAdapter(mEnabledAdapter); + mRecyclerView.setAdapter(mAdapter); + + return mRecyclerView; + } + + @Override + public void onDestroyView() { + super.onDestroyView(); + mRecyclerView = null; + mAdapter = null; + } + + public void refreshList() { + BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); + ArrayList<BluetoothDevice> devices = new ArrayList<>(adapter.getBondedDevices()); + mAdapter.setValues(devices); + } +}
\ No newline at end of file diff --git a/app/src/main/java/com/javispedro/autobluetether/MainActivity.java b/app/src/main/java/com/javispedro/autobluetether/MainActivity.java new file mode 100644 index 0000000..079985c --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/MainActivity.java @@ -0,0 +1,68 @@ +package com.javispedro.autobluetether; + +import android.content.Intent; +import android.net.Uri; +import android.os.Bundle; +import android.provider.Settings; +import android.util.Log; +import android.view.View; + +import androidx.appcompat.app.AppCompatActivity; +import androidx.fragment.app.FragmentManager; +import androidx.fragment.app.FragmentTransaction; + +public class MainActivity extends AppCompatActivity { + private final static String TAG = "MainActivity"; + + private SystemSettingsFragment systemSettingsFragment; + private DeviceFragment deviceFragment; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + FragmentManager manager = getSupportFragmentManager(); + systemSettingsFragment = (SystemSettingsFragment) manager.findFragmentById(R.id.fragmentSystemSettings); + deviceFragment = (DeviceFragment) manager.findFragmentById(R.id.fragmentDeviceList); + } + + @Override + protected void onResume() { + super.onResume(); + refreshSystemSettingsFragmentVisible(); + refreshDeviceList(); + } + + @Override + protected void onDestroy() { + deviceFragment = null; + systemSettingsFragment = null; + super.onDestroy(); + } + + private void refreshSystemSettingsFragmentVisible() { + boolean can_write_settings = Settings.System.canWrite(this); + Log.d(TAG, "can_write_settings: " + can_write_settings); + setSystemSettingsFragmentVisible(!can_write_settings); + } + + private void refreshDeviceList() { + deviceFragment.refreshList(); + } + + private void setSystemSettingsFragmentVisible(boolean visible) { + FragmentTransaction tx = getSupportFragmentManager().beginTransaction(); + if (visible) { + tx.show(systemSettingsFragment); + } else { + tx.hide(systemSettingsFragment); + } + tx.commit(); + } + + public void manageWriteSettings(View view) { + Intent intent = new Intent(Settings.ACTION_MANAGE_WRITE_SETTINGS); + intent.setData(Uri.parse("package:" + getPackageName())); + startActivity(intent); + } +}
\ No newline at end of file diff --git a/app/src/main/java/com/javispedro/autobluetether/SystemSettingsFragment.java b/app/src/main/java/com/javispedro/autobluetether/SystemSettingsFragment.java new file mode 100644 index 0000000..a97f8c8 --- /dev/null +++ b/app/src/main/java/com/javispedro/autobluetether/SystemSettingsFragment.java @@ -0,0 +1,34 @@ +package com.javispedro.autobluetether; + +import android.os.Bundle; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; + +import androidx.fragment.app.Fragment; + +public class SystemSettingsFragment extends Fragment { + public SystemSettingsFragment() { + // Required empty public constructor + } + + public static SystemSettingsFragment newInstance() { + SystemSettingsFragment fragment = new SystemSettingsFragment(); + Bundle args = new Bundle(); + fragment.setArguments(args); + return fragment; + } + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + if (getArguments() != null) { + } + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + return inflater.inflate(R.layout.fragment_system_settings, container, false); + } +}
\ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt" + android:width="108dp" + android:height="108dp" + android:viewportWidth="108" + android:viewportHeight="108"> + <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> + <aapt:attr name="android:fillColor"> + <gradient + android:endX="85.84757" + android:endY="92.4963" + android:startX="42.9492" + android:startY="49.59793" + android:type="linear"> + <item + android:color="#44000000" + android:offset="0.0" /> + <item + android:color="#00000000" + android:offset="1.0" /> + </gradient> + </aapt:attr> + </path> + <path + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> +</vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="utf-8"?> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="108dp" + android:height="108dp" + android:viewportWidth="108" + android:viewportHeight="108"> + <path + android:fillColor="#3DDC84" + android:pathData="M0,0h108v108h-108z" /> + <path + android:fillColor="#00000000" + android:pathData="M9,0L9,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M19,0L19,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M29,0L29,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M39,0L39,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M49,0L49,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M59,0L59,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M69,0L69,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M79,0L79,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M89,0L89,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M99,0L99,108" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,9L108,9" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,19L108,19" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,29L108,29" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,39L108,39" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,49L108,49" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,59L108,59" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,69L108,69" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,79L108,79" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,89L108,89" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M0,99L108,99" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M19,29L89,29" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M19,39L89,39" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M19,49L89,49" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M19,59L89,59" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M19,69L89,69" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M19,79L89,79" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M29,19L29,89" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M39,19L39,89" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M49,19L49,89" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M59,19L59,89" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M69,19L69,89" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> + <path + android:fillColor="#00000000" + android:pathData="M79,19L79,89" + android:strokeWidth="0.8" + android:strokeColor="#33FFFFFF" /> +</vector> diff --git a/app/src/main/res/drawable/ic_twotone_error_24.xml b/app/src/main/res/drawable/ic_twotone_error_24.xml new file mode 100644 index 0000000..e52175d --- /dev/null +++ b/app/src/main/res/drawable/ic_twotone_error_24.xml @@ -0,0 +1,8 @@ +<vector android:height="48dp" android:tint="?attr/colorControlNormal" + android:viewportHeight="24" android:viewportWidth="24" + android:width="48dp" xmlns:android="http://schemas.android.com/apk/res/android"> + <path android:fillAlpha="0.3" + android:fillColor="@android:color/white" + android:pathData="M12,4c-4.42,0 -8,3.58 -8,8s3.58,8 8,8 8,-3.58 8,-8 -3.58,-8 -8,-8zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z" android:strokeAlpha="0.3"/> + <path android:fillColor="@android:color/white" android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM11,15h2v2h-2zM11,7h2v6h-2z"/> +</vector> diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..f2896a6 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".MainActivity"> + + <fragment + android:id="@+id/fragmentSystemSettings" + android:name="com.javispedro.autobluetether.SystemSettingsFragment" + android:layout_width="411dp" + android:layout_height="wrap_content" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/textView2" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginStart="16dp" + android:layout_marginTop="8dp" + android:layout_marginEnd="16dp" + android:text="@string/device_list_header" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/fragmentSystemSettings" /> + + <fragment + android:id="@+id/fragmentDeviceList" + android:name="com.javispedro.autobluetether.DeviceFragment" + android:layout_width="0dp" + android:layout_height="0dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/textView2" /> + +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_device.xml b/app/src/main/res/layout/fragment_device.xml new file mode 100644 index 0000000..f02b1d3 --- /dev/null +++ b/app/src/main/res/layout/fragment_device.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/constraintLayout" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal"> + + <TextView + android:id="@+id/address" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="16dp" + android:layout_marginTop="8dp" + android:layout_marginBottom="8dp" + android:textAppearance="?attr/textAppearanceListItemSecondary" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/name" + tools:layout_conversion_absoluteHeight="22dp" + tools:layout_conversion_absoluteWidth="101dp" + tools:text="ca:ca:ca:ca:ca" /> + + <TextView + android:id="@+id/name" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="16dp" + android:layout_marginTop="16dp" + android:textAppearance="?attr/textAppearanceListItem" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + tools:layout_conversion_absoluteHeight="22dp" + tools:layout_conversion_absoluteWidth="57dp" + tools:text="Device Name" /> + + <CheckBox + android:id="@+id/checked" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="16dp" + android:layout_marginEnd="24dp" + android:layout_marginBottom="16dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintTop_toTopOf="parent" + tools:layout_conversion_absoluteHeight="42dp" + tools:layout_conversion_absoluteWidth="32dp" /> + +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_device_list.xml b/app/src/main/res/layout/fragment_device_list.xml new file mode 100644 index 0000000..8b10502 --- /dev/null +++ b/app/src/main/res/layout/fragment_device_list.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/list" + android:name="com.javispedro.autobluetether.DeviceFragment" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginLeft="16dp" + android:layout_marginRight="16dp" + app:layoutManager="LinearLayoutManager" + tools:context=".DeviceFragment" + tools:listitem="@layout/fragment_device" />
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_system_settings.xml b/app/src/main/res/layout/fragment_system_settings.xml new file mode 100644 index 0000000..e5936b9 --- /dev/null +++ b/app/src/main/res/layout/fragment_system_settings.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/frameLayout" + android:layout_width="match_parent" + android:layout_height="wrap_content" + tools:context=".SystemSettingsFragment"> + + <ImageView + android:id="@+id/imageView2" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="16dp" + android:layout_marginLeft="16dp" + android:layout_marginTop="16dp" + android:layout_marginBottom="16dp" + android:src="@drawable/ic_twotone_error_24" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/textView" + android:layout_width="0dp" + android:layout_height="60dp" + android:layout_marginStart="24dp" + android:layout_marginLeft="24dp" + android:layout_marginTop="16dp" + android:layout_marginEnd="16dp" + android:layout_marginRight="16dp" + android:text="@string/missing_write_settings" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toEndOf="@+id/imageView2" + app:layout_constraintTop_toTopOf="parent" /> + + <Button + android:id="@+id/button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="24dp" + android:layout_marginLeft="24dp" + android:layout_marginTop="32dp" + android:layout_marginEnd="16dp" + android:layout_marginRight="16dp" + android:layout_marginBottom="16dp" + android:onClick="manageWriteSettings" + android:text="@string/manage_write_settings" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toEndOf="@+id/imageView2" + app:layout_constraintTop_toBottomOf="@+id/textView" /> + +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> + <background android:drawable="@drawable/ic_launcher_background" /> + <foreground android:drawable="@drawable/ic_launcher_foreground" /> +</adaptive-icon>
\ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> + <background android:drawable="@drawable/ic_launcher_background" /> + <foreground android:drawable="@drawable/ic_launcher_foreground" /> +</adaptive-icon>
\ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..a571e60 --- /dev/null +++ b/app/src/main/res/mipmap-hdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 0000000..61da551 --- /dev/null +++ b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..c41dd28 --- /dev/null +++ b/app/src/main/res/mipmap-mdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 0000000..db5080a --- /dev/null +++ b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..6dba46d --- /dev/null +++ b/app/src/main/res/mipmap-xhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 0000000..da31a87 --- /dev/null +++ b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..15ac681 --- /dev/null +++ b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 0000000..b216f2d --- /dev/null +++ b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..f25a419 --- /dev/null +++ b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png Binary files differnew file mode 100644 index 0000000..e96783c --- /dev/null +++ b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..4faecfa --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="colorPrimary">#6200EE</color> + <color name="colorPrimaryDark">#3700B3</color> + <color name="colorAccent">#03DAC5</color> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml new file mode 100644 index 0000000..ca514d8 --- /dev/null +++ b/app/src/main/res/values/dimens.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="text_margin">16dp</dimen> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..e86eff1 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,10 @@ +<resources> + <string name="app_name">Autobluetether</string> + + <string name="missing_write_settings">Permission to write to system settings has not been granted. It is required to enable Bluetooth tethering setting.</string> + <string name="manage_write_settings">Grant access to system settings</string> + + <string name="device_list_header">Bluetooth tethering will be enabled automatically when any of the following selected devices is connected:</string> + + <string name="prefs_key_device_list">device_list</string> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..fac9291 --- /dev/null +++ b/app/src/main/res/values/styles.xml @@ -0,0 +1,10 @@ +<resources> + <!-- Base application theme. --> + <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> + <!-- Customize your theme here. --> + <item name="colorPrimary">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> + <item name="colorAccent">@color/colorAccent</item> + </style> + +</resources>
\ No newline at end of file |