Android resource linking failed
xxx/res/layout/login_landscape.xml:2: error: attribute layout_constraintBottom_toBottomOf (aka xxx:layout_constraintBottom_toBottomOf) not found.
» 2019 » May の記事
ImageButton registerBtn;
registerBtn = (ImageButton)findViewById(R.id.loginBtn) ;
registerBtn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Log.d("test","connie");
}
});

<EditText
android:id="@+id/editText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:background="@drawable/text_field_bg"
android:padding="5dp"
android:hint="請輸入帳號(4-16英數)"/>


File-based resource names must contain only lowercase a-z, 0-9, or underscore

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TableLayout
android:layout_width="300dp"
android:layout_height="match_parent"
android:gravity="center">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button3" />
</TableRow>
</TableLayout>
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button13"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button4" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
</TableLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>
-commit
-create a new local branch
-push to remotes
-select the new local branch and tick it
-then u will push to new branch on remote server
-and delete the local branch
#create git
git --bare init
#List branch
git branch
#create Branch
git branch new-branch
#del branch
git branch -D new-branch
~ 掃ipa內的framework ~
xxx.ipa => xxx.zip
unzip
otool -L xxx.app/xxx
1)有無手機上網
2)bundle id 岩唔岩
3)in-app purchase 有無填
4)in-app purchase item 有無tick Cleared for Sale
5)itune connect account <agreement, tax, banking> paid apps agreement 是否在active狀態
« Previous Page | HOME |
Recent Comments