-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added web search from details activity
- Loading branch information
1 parent
a59785d
commit 3b30a76
Showing
7 changed files
with
89 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 46 additions & 2 deletions
48
app/src/main/java/eu/zderadicka/audioserve/DetailsActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,72 @@ | ||
package eu.zderadicka.audioserve | ||
|
||
import android.content.Intent | ||
import android.net.Uri | ||
import android.support.v7.app.AppCompatActivity | ||
import android.os.Bundle | ||
import android.preference.PreferenceManager | ||
import android.view.Menu | ||
import android.view.MenuItem | ||
import eu.zderadicka.audioserve.data.pathFromFolderId | ||
import eu.zderadicka.audioserve.fragments.ARG_FOLDER_DETAILS | ||
import eu.zderadicka.audioserve.fragments.ARG_FOLDER_NAME | ||
import eu.zderadicka.audioserve.fragments.ARG_FOLDER_PATH | ||
import eu.zderadicka.audioserve.fragments.DetailsFragment | ||
|
||
private val searchUri = Uri.parse("https://www.google.com/search") | ||
private val toReplace = Regex("""[_\-/,]""") | ||
private val bracketed = Regex("""[(\[{].*[)\]}]""") | ||
|
||
|
||
|
||
class DetailsActivity : AppCompatActivity() { | ||
|
||
lateinit var folderName: String | ||
lateinit var folderPath:String | ||
|
||
override fun onCreate(savedInstanceState: Bundle?) { | ||
super.onCreate(savedInstanceState) | ||
setContentView(R.layout.activity_details) | ||
supportActionBar?.setDisplayHomeAsUpEnabled(true) | ||
|
||
val folderName = intent.getStringExtra(ARG_FOLDER_NAME)?:"" | ||
folderName = intent.getStringExtra(ARG_FOLDER_NAME)?:"" | ||
val folderId = intent.getStringExtra(ARG_FOLDER_PATH)!! | ||
val folderPath = pathFromFolderId(folderId) | ||
folderPath = pathFromFolderId(folderId) | ||
val details = intent.getBundleExtra(ARG_FOLDER_DETAILS) | ||
val t = supportFragmentManager.beginTransaction() | ||
t.add(R.id.detailsFragment, DetailsFragment.newInstance(folderPath,folderName,details)) | ||
t.commit() | ||
|
||
|
||
} | ||
|
||
override fun onCreateOptionsMenu(menu: Menu?): Boolean { | ||
menuInflater.inflate(R.menu.info_menu, menu) | ||
return true | ||
} | ||
|
||
private val searchString:String | ||
get() { | ||
val searchPrefix = PreferenceManager.getDefaultSharedPreferences(this) | ||
.getString("pref_web_search_prefix", "") | ||
var query = searchPrefix+ " "+folderName + " " + folderPath | ||
query = toReplace.replace(query, " ") | ||
query = bracketed.replace(query, "") | ||
query = Regex("""\s{2,}""").replace(query, " ") | ||
query = query.trim() | ||
return query | ||
} | ||
|
||
override fun onOptionsItemSelected(item: MenuItem): Boolean { | ||
when (item.itemId) { | ||
R.id.action_web_search -> { | ||
val uri = searchUri.buildUpon().appendQueryParameter("q", searchString).build() | ||
val intent = Intent(Intent.ACTION_VIEW) | ||
intent.data = uri | ||
startActivity(intent) | ||
} | ||
} | ||
|
||
return super.onOptionsItemSelected(item) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<vector android:height="24dp" android:tint="#FFFFFF" | ||
android:viewportHeight="24.0" android:viewportWidth="24.0" | ||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<path android:fillColor="#FF000000" 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,2zM18.92,8h-2.95c-0.32,-1.25 -0.78,-2.45 -1.38,-3.56 1.84,0.63 3.37,1.91 4.33,3.56zM12,4.04c0.83,1.2 1.48,2.53 1.91,3.96h-3.82c0.43,-1.43 1.08,-2.76 1.91,-3.96zM4.26,14C4.1,13.36 4,12.69 4,12s0.1,-1.36 0.26,-2h3.38c-0.08,0.66 -0.14,1.32 -0.14,2 0,0.68 0.06,1.34 0.14,2L4.26,14zM5.08,16h2.95c0.32,1.25 0.78,2.45 1.38,3.56 -1.84,-0.63 -3.37,-1.9 -4.33,-3.56zM8.03,8L5.08,8c0.96,-1.66 2.49,-2.93 4.33,-3.56C8.81,5.55 8.35,6.75 8.03,8zM12,19.96c-0.83,-1.2 -1.48,-2.53 -1.91,-3.96h3.82c-0.43,1.43 -1.08,2.76 -1.91,3.96zM14.34,14L9.66,14c-0.09,-0.66 -0.16,-1.32 -0.16,-2 0,-0.68 0.07,-1.35 0.16,-2h4.68c0.09,0.65 0.16,1.32 0.16,2 0,0.68 -0.07,1.34 -0.16,2zM14.59,19.56c0.6,-1.11 1.06,-2.31 1.38,-3.56h2.95c-0.96,1.65 -2.49,2.93 -4.33,3.56zM16.36,14c0.08,-0.66 0.14,-1.32 0.14,-2 0,-0.68 -0.06,-1.34 -0.14,-2h3.38c0.16,0.64 0.26,1.31 0.26,2s-0.1,1.36 -0.26,2h-3.38z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
<item android:id="@+id/action_web_search" | ||
android:title="Web search" | ||
android:icon="@drawable/ic_web" | ||
app:showAsAction="always" | ||
/> | ||
|
||
|
||
</menu> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters