Compare commits
27 Commits
treasureDr
...
master
Author | SHA1 | Date |
---|---|---|
|
c2dd429e9c | 2 years ago |
|
df73330ce4 | 2 years ago |
|
945f0eeda5 | 2 years ago |
|
1e46767d2b | 2 years ago |
|
b47c4f4c88 | 2 years ago |
![]() |
af20aa2832 | 2 years ago |
![]() |
1dab25c89e | 2 years ago |
![]() |
20df5325ab | 2 years ago |
![]() |
245ff1bffd | 2 years ago |
![]() |
043dd9ca4f | 2 years ago |
|
37b8b0f95d | 2 years ago |
|
ee76fcb954 | 2 years ago |
![]() |
a851991274 | 2 years ago |
![]() |
218e85d571 | 2 years ago |
![]() |
640950bc50 | 2 years ago |
![]() |
35fd67cbcf | 2 years ago |
![]() |
bf752264ef | 2 years ago |
![]() |
b04739859f | 2 years ago |
![]() |
509506ebb8 | 2 years ago |
![]() |
3b1bcc6fcf | 2 years ago |
![]() |
0d2d21832e | 2 years ago |
![]() |
6635825713 | 2 years ago |
![]() |
bb0b05ed91 | 2 years ago |
![]() |
2b44820d67 | 2 years ago |
![]() |
ab0f8a0462 | 2 years ago |
![]() |
c6341f7e1a | 2 years ago |
![]() |
f21502c844 | 2 years ago |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 44 KiB |
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="$PROJECT_DIR$/../" vcs="Git" />
|
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
@ -1,42 +1,62 @@
|
|||||||
package com.example.shakecraft
|
package com.example.shakecraft
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.fragment.app.Fragment
|
import androidx.fragment.app.Fragment
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.fragment.app.activityViewModels
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import com.example.shakecraft.model.Player
|
import com.example.shakecraft.model.Tool
|
||||||
import com.example.shakecraft.view.adapter.AdapterInventory
|
import com.example.shakecraft.view.adapter.AdapterInventory
|
||||||
|
import com.example.shakecraft.viewmodel.MainViewModel
|
||||||
|
|
||||||
|
|
||||||
class InventoryFragment() : Fragment( ) {
|
class InventoryFragment() : Fragment( ), AdapterInventory.OnItemLongClickListener {
|
||||||
|
|
||||||
private lateinit var recyclerView: RecyclerView
|
private lateinit var recyclerView: RecyclerView
|
||||||
|
val viewModel : MainViewModel by activityViewModels<MainViewModel>()
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onItemLongClick(position: Int) {
|
||||||
|
if (viewModel.currentPlayer.value!!.items[position] is Tool) {
|
||||||
|
val text = if (viewModel.equipeItem(viewModel.currentPlayer.value!!.items[position]) ) " was well equipped" else " has been well unequipped"
|
||||||
|
Toast.makeText(
|
||||||
|
context,
|
||||||
|
viewModel.currentPlayer.value!!.items[position].type.name + text,
|
||||||
|
Toast.LENGTH_SHORT
|
||||||
|
).show()
|
||||||
|
setUpRecyclerView(view?.parent as ViewGroup, this)
|
||||||
|
}
|
||||||
|
}
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
|
|
||||||
inflater: LayoutInflater, container: ViewGroup?,
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
savedInstanceState: Bundle?
|
savedInstanceState: Bundle?
|
||||||
): View? {
|
): View? {
|
||||||
val currentPlayer = (activity as MainActivity).currentPlayer
|
|
||||||
val view = inflater.inflate(R.layout.fragment_inventory, container, false)
|
val view = inflater.inflate(R.layout.fragment_inventory, container, false)
|
||||||
|
|
||||||
// Initialize views
|
// Initialize views
|
||||||
setUpRecyclerView(view, currentPlayer)
|
setUpRecyclerView(view, this)
|
||||||
|
|
||||||
return view
|
return view
|
||||||
}
|
}
|
||||||
private fun setUpRecyclerView(view: View, currentPlayer: Player) {
|
private fun setUpRecyclerView(view: View,listener: AdapterInventory.OnItemLongClickListener ) {
|
||||||
recyclerView = view.findViewById(R.id.recyclerviewInventory)
|
recyclerView = view.findViewById(R.id.recyclerviewInventory)
|
||||||
with(recyclerView) {
|
with(recyclerView) {
|
||||||
layoutManager = LinearLayoutManager(view.context)
|
layoutManager = LinearLayoutManager(view.context)
|
||||||
adapter = AdapterInventory(currentPlayer.items)
|
adapter = viewModel.currentPlayer.value?.let {
|
||||||
|
AdapterInventory(viewModel.currentPlayer.value!!.items, listener ,
|
||||||
|
it
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.example.shakecraft.data
|
||||||
|
|
||||||
|
data class WeatherResponse(
|
||||||
|
val weather: List<Weather>,
|
||||||
|
val info: Info
|
||||||
|
)
|
||||||
|
|
||||||
|
data class Weather(
|
||||||
|
val id: Int,
|
||||||
|
val main: String,
|
||||||
|
val description: String,
|
||||||
|
val icon: String
|
||||||
|
)
|
||||||
|
|
||||||
|
data class Info(
|
||||||
|
val temp: Double,
|
||||||
|
val feelsLike: Double,
|
||||||
|
val humidity: Int
|
||||||
|
)
|
@ -0,0 +1,15 @@
|
|||||||
|
package com.example.shakecraft.data.dao
|
||||||
|
import androidx.room.Dao
|
||||||
|
import androidx.room.Insert
|
||||||
|
import androidx.room.OnConflictStrategy
|
||||||
|
import androidx.room.Query
|
||||||
|
import com.example.shakecraft.model.Item
|
||||||
|
|
||||||
|
@Dao
|
||||||
|
interface ItemDao {
|
||||||
|
@Query("SELECT * FROM item")
|
||||||
|
suspend fun getAllItems(): List<Item>
|
||||||
|
|
||||||
|
@Insert(onConflict = OnConflictStrategy.REPLACE)
|
||||||
|
suspend fun insertItem(item: Item)
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package com.example.shakecraft.data.dao
|
||||||
|
|
||||||
|
import androidx.room.Dao
|
||||||
|
import androidx.room.Insert
|
||||||
|
import androidx.room.OnConflictStrategy
|
||||||
|
import androidx.room.Query
|
||||||
|
import com.example.shakecraft.model.Player
|
||||||
|
|
||||||
|
@Dao
|
||||||
|
interface PlayerDao {
|
||||||
|
@Query("SELECT * FROM player")
|
||||||
|
suspend fun getAllPlayers(): List<Player>
|
||||||
|
|
||||||
|
@Insert(onConflict = OnConflictStrategy.REPLACE)
|
||||||
|
suspend fun insertPlayer(player: Player)
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.example.shakecraft.model
|
||||||
|
|
||||||
|
class Tool(type : ItemType, stack: Int,val damage : Int) : Item(type, stack) {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.example.shakecraft.services
|
||||||
|
import com.example.shakecraft.data.WeatherResponse
|
||||||
|
import retrofit2.http.GET
|
||||||
|
import retrofit2.http.Query
|
||||||
|
|
||||||
|
interface OpenWeatherMapService {
|
||||||
|
@GET("weather")
|
||||||
|
suspend fun getCurrentWeather(
|
||||||
|
@Query("q") cityName: String,
|
||||||
|
@Query("appid") apiKey: String
|
||||||
|
): WeatherResponse
|
||||||
|
}
|
@ -1,3 +0,0 @@
|
|||||||
package com.example.shakecraft.view.viewholder
|
|
||||||
class ViewHolderInventory(inflate: Any?) {
|
|
||||||
}
|
|
@ -0,0 +1,39 @@
|
|||||||
|
package com.example.shakecraft.viewmodel
|
||||||
|
|
||||||
|
import androidx.lifecycle.MutableLiveData
|
||||||
|
import androidx.lifecycle.ViewModel
|
||||||
|
import com.example.shakecraft.data.Stub
|
||||||
|
import com.example.shakecraft.model.Boss
|
||||||
|
import com.example.shakecraft.model.Item
|
||||||
|
import com.example.shakecraft.model.Recipe
|
||||||
|
|
||||||
|
class MainViewModel : ViewModel() {
|
||||||
|
|
||||||
|
var currentPlayer = MutableLiveData(Stub().load())
|
||||||
|
|
||||||
|
|
||||||
|
lateinit var currentBoss : Boss
|
||||||
|
val isBossInitialized get() = this::currentBoss.isInitialized
|
||||||
|
|
||||||
|
fun craft(recipe : Recipe, count : Int = 1){
|
||||||
|
currentPlayer.value?.craft(recipe, count)
|
||||||
|
this.currentPlayer.value = currentPlayer.value
|
||||||
|
}
|
||||||
|
|
||||||
|
fun addItem(item: Item) {
|
||||||
|
currentPlayer.value?.addItem(item)
|
||||||
|
this.currentPlayer.value = currentPlayer.value
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
fun gainXp(xpReward: Int) {
|
||||||
|
currentPlayer.value?.gainXp(xpReward)
|
||||||
|
this.currentPlayer.value = currentPlayer.value
|
||||||
|
}
|
||||||
|
|
||||||
|
fun equipeItem(item: Item): Boolean {
|
||||||
|
currentPlayer.value?.equipeItem(item)
|
||||||
|
this.currentPlayer.value = currentPlayer.value
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 639 B |
After Width: | Height: | Size: 929 B |
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<solid android:color="@color/black_800"/>
|
||||||
|
<corners
|
||||||
|
android:topLeftRadius="5dp"
|
||||||
|
android:topRightRadius="5dp"
|
||||||
|
android:bottomLeftRadius="5dp"
|
||||||
|
android:bottomRightRadius="5dp"/>
|
||||||
|
<stroke android:width="1dp"
|
||||||
|
android:color="@color/grey_100" />
|
||||||
|
</shape>
|
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 79 KiB |
@ -0,0 +1,450 @@
|
|||||||
|
<?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"
|
||||||
|
android:background="@color/black_800"
|
||||||
|
tools:context=".MainActivity">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView2"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="10dp"
|
||||||
|
android:paddingBottom="10dp"
|
||||||
|
android:text="@string/home_title"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="16sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:id="@+id/constraintLayout"
|
||||||
|
android:layout_width="250dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginHorizontal="15dp"
|
||||||
|
android:background="@drawable/rounded_border_button"
|
||||||
|
android:paddingLeft="15dp"
|
||||||
|
android:paddingRight="15dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/textView2">
|
||||||
|
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/profil_container"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent">
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginVertical="10dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView2"
|
||||||
|
android:layout_width="60dp"
|
||||||
|
android:layout_height="95dp"
|
||||||
|
android:layout_gravity="bottom"
|
||||||
|
android:contentDescription="@string/landscape"
|
||||||
|
android:src="@drawable/background" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/playerImage"
|
||||||
|
android:layout_width="50dp"
|
||||||
|
android:layout_height="80dp"
|
||||||
|
android:layout_gravity="bottom"
|
||||||
|
android:contentDescription="Landscape" />
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="15dp"
|
||||||
|
android:layout_marginTop="5dp"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/pseudoEditText"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Pseudo"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="18sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView6"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Lvl."
|
||||||
|
android:textColor="@color/grey_300" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/levelTextView"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="2"
|
||||||
|
android:textColor="@color/grey_300" />
|
||||||
|
|
||||||
|
<ProgressBar
|
||||||
|
android:id="@+id/levelProgressBar"
|
||||||
|
style="?android:attr/progressBarStyleHorizontal"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="5dp"
|
||||||
|
android:layout_marginHorizontal="10dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:max="100"
|
||||||
|
android:progress="20"
|
||||||
|
android:progressDrawable="@drawable/custom_level_progressbar" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/xpTextView"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="349"
|
||||||
|
android:textColor="@color/white" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView7"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="/"
|
||||||
|
android:textColor="@color/white" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/maxXpTextView"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textColor="@color/white" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView6"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:paddingRight="10dp"
|
||||||
|
android:text="Rank"
|
||||||
|
android:textColor="@color/grey_300" />
|
||||||
|
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/rankTextView"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Beginner"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_horizontal"
|
||||||
|
android:paddingBottom="15dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/profil_container"
|
||||||
|
tools:layout_editor_absoluteX="15dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/equipedItemAttack"
|
||||||
|
android:layout_width="30dp"
|
||||||
|
android:layout_height="30dp"
|
||||||
|
android:layout_gravity="bottom"
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:background="@drawable/background_equiped_item"
|
||||||
|
android:contentDescription="Landscape"
|
||||||
|
android:tooltipText="Equiped Weapon" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/equipedItemFishing"
|
||||||
|
android:layout_width="30dp"
|
||||||
|
android:layout_height="30dp"
|
||||||
|
android:layout_gravity="bottom"
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:background="@drawable/background_equiped_item"
|
||||||
|
android:contentDescription="Landscape"
|
||||||
|
android:tooltipText="Equiped Fishing Rod" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/equipedItemCollect"
|
||||||
|
android:layout_width="30dp"
|
||||||
|
android:layout_height="30dp"
|
||||||
|
android:layout_gravity="bottom"
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:background="@drawable/background_equiped_item"
|
||||||
|
android:contentDescription="Landscape"
|
||||||
|
android:tooltipText="Equiped Tool" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/equipedItemArmor"
|
||||||
|
android:layout_width="30dp"
|
||||||
|
android:layout_height="30dp"
|
||||||
|
android:layout_gravity="bottom"
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:background="@drawable/background_equiped_item"
|
||||||
|
android:contentDescription="Landscape"
|
||||||
|
android:tooltipText="Equiped Armor" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
|
||||||
|
<ScrollView
|
||||||
|
android:id="@+id/scroll_activties"
|
||||||
|
android:layout_width="220dp"
|
||||||
|
android:layout_height="200dp"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/constraintLayout"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/textView2">
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:id="@+id/buttonForge"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="60dp"
|
||||||
|
android:layout_marginHorizontal="15dp"
|
||||||
|
android:layout_marginVertical="10dp"
|
||||||
|
android:background="@drawable/rounded_border_button"
|
||||||
|
android:clickable="true"
|
||||||
|
android:foreground="?android:attr/selectableItemBackground"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/constraintLayout">
|
||||||
|
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView2"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_marginLeft="10dp"
|
||||||
|
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:src="@drawable/ic_anvil" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView4"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Ancient Forge"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView5"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Craft ever more powerful tools."
|
||||||
|
android:textColor="@color/grey_300"
|
||||||
|
android:textSize="11sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:id="@+id/buttonCollect"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="60dp"
|
||||||
|
android:layout_marginHorizontal="15dp"
|
||||||
|
android:layout_marginVertical="10dp"
|
||||||
|
android:background="@drawable/rounded_border_button"
|
||||||
|
android:clickable="true"
|
||||||
|
android:foreground="?android:attr/selectableItemBackground"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/buttonForge">
|
||||||
|
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView2"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginLeft="10dp"
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:src="@drawable/ic_tree" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView4"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Pleasant Forest"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView5"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Collect ressources to became powerfull."
|
||||||
|
android:textColor="@color/grey_300"
|
||||||
|
android:textSize="11sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:id="@+id/buttonBoss"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="60dp"
|
||||||
|
android:layout_marginHorizontal="15dp"
|
||||||
|
android:layout_marginVertical="10dp"
|
||||||
|
android:background="@drawable/rounded_border_button"
|
||||||
|
android:clickable="true"
|
||||||
|
android:foreground="?android:attr/selectableItemBackground"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/buttonCollect">
|
||||||
|
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageView2"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginLeft="10dp"
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:src="@drawable/ic_key" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView4"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Dungeon"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView5"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Defeat boss to gain Mystic rewards."
|
||||||
|
android:textColor="@color/grey_300"
|
||||||
|
android:textSize="11sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/event_container"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="200dp"
|
||||||
|
android:gravity="center_horizontal"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:paddingBottom="20dp"
|
||||||
|
android:visibility="visible"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/scroll_activties"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/textView2">
|
||||||
|
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/event_message"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:adjustViewBounds="true"
|
||||||
|
android:clickable="true"
|
||||||
|
android:maxWidth="200dip"
|
||||||
|
android:scaleType="centerCrop"
|
||||||
|
android:src="@drawable/event_message"
|
||||||
|
android:visibility="visible">
|
||||||
|
|
||||||
|
|
||||||
|
</ImageView>
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/buttonFishing"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:adjustViewBounds="true"
|
||||||
|
android:clickable="true"
|
||||||
|
android:visibility="gone"
|
||||||
|
android:maxWidth="200dip"
|
||||||
|
android:scaleType="centerCrop"
|
||||||
|
android:src="@drawable/fishing_event">
|
||||||
|
|
||||||
|
|
||||||
|
</ImageView>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
Loading…
Reference in new issue