add project adins

This commit is contained in:
Alfrid Sanjaya Leo Putra 2024-07-25 14:44:22 +07:00
commit f8f85d679d
5299 changed files with 625430 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/text_spin"
android:singleLine="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="center_vertical|left"
android:ellipsize="marquee"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/fontColor" />

View file

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/lookupReviewLayout"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp">
<TextView
android:id="@+id/questionNoLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0. "
android:textAppearance="?android:attr/textAppearanceSmall"/>
<TextView
android:id="@+id/questionTextLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Label"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_toRightOf="@+id/questionNoLabel"/>
<TableLayout
android:layout_below="@id/questionTextLabel"
android:id="@+id/reviewLookupAnswerLayout"
android:layout_width="match_parent"
android:paddingTop="5dp"
android:stretchColumns="1"
android:layout_height="wrap_content">
</TableLayout>
<TextView
android:id="@+id/questionTextAnswer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/reviewLookupAnswerLayout"
android:layout_toEndOf="@+id/questionNoLabel"
android:layout_toRightOf="@+id/questionNoLabel"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:text="Answer"
android:textAppearance="?android:attr/textAppearanceSmall"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@+id/questionTextAnswer"
android:background="@color/timelineLine"
android:layout_marginBottom="5dp"/>
</RelativeLayout>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,33 @@
/*
* Copyright 2013 Chris Banes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package uk.co.senab.actionbarpulltorefresh.library.viewdelegates;
import android.view.View;
import android.widget.ScrollView;
/**
* FIXME
*/
public class ScrollYDelegate implements ViewDelegate {
public static final Class[] SUPPORTED_VIEW_CLASSES = {ScrollView.class};
@Override
public boolean isReadyForPull(View view, float x, float y) {
return view.getScrollY() <= 0;
}
}

View file

@ -0,0 +1,34 @@
package com.adins.mss.coll.models;
/**
* Created by Aditya Purwa on 3/4/2015.
*/
public class ReportDetail {
private String uuid_deposit_report_d;
private String task_id;
private String deposit_amt;
public String getUuid_deposit_report_d() {
return uuid_deposit_report_d;
}
public void setUuid_deposit_report_d(String uuid_deposit_report_d) {
this.uuid_deposit_report_d = uuid_deposit_report_d;
}
public String getTask_id() {
return task_id;
}
public void setTask_id(String task_id) {
this.task_id = task_id;
}
public String getDeposit_amt() {
return deposit_amt;
}
public void setDeposit_amt(String deposit_amt) {
this.deposit_amt = deposit_amt;
}
}