parent
d8dc4ff2fa
commit
d1e7a78559
@ -0,0 +1,14 @@
|
|||||||
|
package cc.liuyx.app;
|
||||||
|
|
||||||
|
import android.os.Bundle;
|
||||||
|
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
|
public class UserInfoActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
setContentView(R.layout.activity_user_info);
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 380 B |
After Width: | Height: | Size: 363 B |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 632 B |
After Width: | Height: | Size: 209 B |
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<shape>
|
||||||
|
<solid android:color="#ffffff" />
|
||||||
|
<padding
|
||||||
|
android:bottom="16dp"
|
||||||
|
android:left="15dp"
|
||||||
|
android:right="15dp"
|
||||||
|
android:top="16dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
<item android:bottom="10dp">
|
||||||
|
<shape>
|
||||||
|
<stroke android:color="#000000"/>
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
@ -1,8 +1,8 @@
|
|||||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
<style name="Theme.MyApplication" parent="Theme.AppCompat.Light.NoActionBar">
|
<style name="Theme.MyApplication" parent="Theme.AppCompat.Light.NoActionBar">
|
||||||
<!-- 默认按钮颜色 -->
|
<!-- 默认按钮颜色 -->
|
||||||
<item name="colorButtonNormal">#9AD9FD</item>
|
<item name="colorButtonNormal">#9AD9FD</item>
|
||||||
|
|
||||||
<item name="fontFamily">serif</item>
|
<item name="fontFamily">serif</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in new issue