Implement basic onion request UI
parent
5d4c7dcb49
commit
388ca90361
Binary file not shown.
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="oval">
|
||||||
|
|
||||||
|
<solid android:color="@color/accent" />
|
||||||
|
|
||||||
|
</shape>
|
@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@drawable/default_session_background"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:gravity="center">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="@dimen/large_spacing"
|
||||||
|
android:layout_marginTop="@dimen/large_spacing"
|
||||||
|
android:layout_marginRight="@dimen/large_spacing"
|
||||||
|
android:textSize="@dimen/small_font_size"
|
||||||
|
android:textColor="@color/text"
|
||||||
|
android:alpha="0.6"
|
||||||
|
android:textAlignment="center"
|
||||||
|
android:text="@string/activity_path_explanation" />
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:layout_margin="@dimen/large_spacing">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/pathRowsContainer"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_centerInParent="true" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
style="@style/MediumProminentOutlineButton"
|
||||||
|
android:id="@+id/rebuildPathButton"
|
||||||
|
android:layout_width="196dp"
|
||||||
|
android:layout_height="@dimen/medium_button_height"
|
||||||
|
android:layout_marginBottom="@dimen/medium_spacing"
|
||||||
|
android:text="@string/activity_path_rebuild_path_button_title" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
@ -0,0 +1,128 @@
|
|||||||
|
package org.thoughtcrime.securesms.loki.activities
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.util.AttributeSet
|
||||||
|
import android.util.TypedValue
|
||||||
|
import android.view.Gravity
|
||||||
|
import android.view.View
|
||||||
|
import android.widget.LinearLayout
|
||||||
|
import android.widget.RelativeLayout
|
||||||
|
import android.widget.TextView
|
||||||
|
import kotlinx.android.synthetic.main.activity_path.*
|
||||||
|
import network.loki.messenger.R
|
||||||
|
import org.thoughtcrime.securesms.PassphraseRequiredActionBarActivity
|
||||||
|
import org.thoughtcrime.securesms.loki.utilities.getColorWithID
|
||||||
|
|
||||||
|
class PathActivity : PassphraseRequiredActionBarActivity() {
|
||||||
|
|
||||||
|
// region Lifecycle
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?, isReady: Boolean) {
|
||||||
|
super.onCreate(savedInstanceState, isReady)
|
||||||
|
setContentView(R.layout.activity_path)
|
||||||
|
supportActionBar!!.title = resources.getString(R.string.activity_path_title)
|
||||||
|
val youRow = getPathRow("You", null, LineView.Location.Top, 0.0f, 0.0f)
|
||||||
|
val row1 = getPathRow("Guard Node", "0.0.0.0", LineView.Location.Middle, 0.0f, 0.0f)
|
||||||
|
val row2 = getPathRow("Service Node", "0.0.0.0", LineView.Location.Middle, 0.0f, 0.0f)
|
||||||
|
val row3 = getPathRow("Service Node", "0.0.0.0", LineView.Location.Middle, 0.0f, 0.0f)
|
||||||
|
val destinationRow = getPathRow("Destination", null, LineView.Location.Bottom, 0.0f, 0.0f)
|
||||||
|
pathRowsContainer.addView(youRow)
|
||||||
|
pathRowsContainer.addView(row1)
|
||||||
|
pathRowsContainer.addView(row2)
|
||||||
|
pathRowsContainer.addView(row3)
|
||||||
|
pathRowsContainer.addView(destinationRow)
|
||||||
|
}
|
||||||
|
// endregion
|
||||||
|
|
||||||
|
// region General
|
||||||
|
private fun getPathRow(title: String, subtitle: String?, location: LineView.Location, dotAnimationStartDelay: Float, dotAnimationRepeatInterval: Float): LinearLayout {
|
||||||
|
val lineView = LineView(this, location, dotAnimationStartDelay, dotAnimationRepeatInterval)
|
||||||
|
val lineViewLayoutParams = LinearLayout.LayoutParams(resources.getDimensionPixelSize(R.dimen.path_row_dot_size), resources.getDimensionPixelSize(R.dimen.path_row_height))
|
||||||
|
lineView.layoutParams = lineViewLayoutParams
|
||||||
|
val titleTextView = TextView(this)
|
||||||
|
titleTextView.setTextColor(resources.getColorWithID(R.color.text, theme))
|
||||||
|
titleTextView.setTextSize(TypedValue.COMPLEX_UNIT_PX, resources.getDimension(R.dimen.medium_font_size))
|
||||||
|
titleTextView.text = title
|
||||||
|
val titleContainer = LinearLayout(this)
|
||||||
|
titleContainer.orientation = LinearLayout.VERTICAL
|
||||||
|
titleContainer.addView(titleTextView)
|
||||||
|
val titleContainerLayoutParams = LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT)
|
||||||
|
titleContainerLayoutParams.marginStart = resources.getDimensionPixelSize(R.dimen.large_spacing)
|
||||||
|
titleContainer.layoutParams = titleContainerLayoutParams
|
||||||
|
if (subtitle != null) {
|
||||||
|
val subtitleTextView = TextView(this)
|
||||||
|
subtitleTextView.setTextColor(resources.getColorWithID(R.color.text, theme))
|
||||||
|
subtitleTextView.setTextSize(TypedValue.COMPLEX_UNIT_PX, resources.getDimension(R.dimen.small_font_size))
|
||||||
|
subtitleTextView.text = subtitle
|
||||||
|
titleContainer.addView(subtitleTextView)
|
||||||
|
}
|
||||||
|
val mainContainer = LinearLayout(this)
|
||||||
|
mainContainer.orientation = LinearLayout.HORIZONTAL
|
||||||
|
mainContainer.gravity = Gravity.CENTER_VERTICAL
|
||||||
|
val mainContainerLayoutParams = LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT)
|
||||||
|
mainContainer.layoutParams = mainContainerLayoutParams
|
||||||
|
mainContainer.addView(lineView)
|
||||||
|
mainContainer.addView(titleContainer)
|
||||||
|
return mainContainer
|
||||||
|
}
|
||||||
|
// endregion
|
||||||
|
|
||||||
|
// region Line View
|
||||||
|
private class LineView : RelativeLayout {
|
||||||
|
private lateinit var location: Location
|
||||||
|
private var dotAnimationStartDelay = 0.0f
|
||||||
|
private var dotAnimationRepeatInterval = 0.0f
|
||||||
|
|
||||||
|
enum class Location {
|
||||||
|
Top, Middle, Bottom
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(context: Context, location: Location, dotAnimationStartDelay: Float, dotAnimationRepeatInterval: Float) : super(context) {
|
||||||
|
this.location = location
|
||||||
|
this.dotAnimationStartDelay = dotAnimationStartDelay
|
||||||
|
this.dotAnimationRepeatInterval = dotAnimationRepeatInterval
|
||||||
|
setUpViewHierarchy()
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(context: Context) : super(context) {
|
||||||
|
throw Exception("Use LineView(context:location:dotAnimationStartDelay:dotAnimationRepeatInterval:) instead.")
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) {
|
||||||
|
throw Exception("Use LineView(context:location:dotAnimationStartDelay:dotAnimationRepeatInterval:) instead.")
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(context, attrs, defStyleAttr) {
|
||||||
|
throw Exception("Use LineView(context:location:dotAnimationStartDelay:dotAnimationRepeatInterval:) instead.")
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int, defStyleRes: Int) : super(context, attrs, defStyleAttr, defStyleRes) {
|
||||||
|
throw Exception("Use LineView(context:location:dotAnimationStartDelay:dotAnimationRepeatInterval:) instead.")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setUpViewHierarchy() {
|
||||||
|
val lineView = View(context)
|
||||||
|
lineView.setBackgroundColor(resources.getColorWithID(R.color.text, context.theme))
|
||||||
|
val lineViewHeight = when (location) {
|
||||||
|
Location.Top, Location.Bottom -> resources.getDimensionPixelSize(R.dimen.path_row_height) / 2
|
||||||
|
Location.Middle -> resources.getDimensionPixelSize(R.dimen.path_row_height)
|
||||||
|
}
|
||||||
|
val lineViewLayoutParams = LayoutParams(1, lineViewHeight)
|
||||||
|
when (location) {
|
||||||
|
Location.Top -> lineViewLayoutParams.addRule(ALIGN_PARENT_BOTTOM)
|
||||||
|
Location.Middle, Location.Bottom -> lineViewLayoutParams.addRule(ALIGN_PARENT_TOP)
|
||||||
|
}
|
||||||
|
lineViewLayoutParams.addRule(CENTER_HORIZONTAL)
|
||||||
|
lineView.layoutParams = lineViewLayoutParams
|
||||||
|
addView(lineView)
|
||||||
|
val dotView = View(context)
|
||||||
|
dotView.setBackgroundResource(R.drawable.accent_dot)
|
||||||
|
val dotViewSize = resources.getDimensionPixelSize(R.dimen.path_row_dot_size)
|
||||||
|
val dotViewLayoutParams = LayoutParams(dotViewSize, dotViewSize)
|
||||||
|
dotViewLayoutParams.addRule(CENTER_IN_PARENT)
|
||||||
|
dotView.layoutParams = dotViewLayoutParams
|
||||||
|
addView(dotView)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// endregion
|
||||||
|
}
|
Loading…
Reference in New Issue